recipe-{debupstream}-0~{revno}/0000700000000000000000000000000011754171333014104 5ustar recipe-{debupstream}-0~{revno}/list-add.png0000600000000000000000000000510311754171333016314 0ustar PNG  IHDR #ꦷgAMA asRGB cHRMz&u0`:pQ<bKGDC pHYs oy IDAThmlUU圳9R6BVFBꕱa(/$j)ބKM4℈aR2 vso"( jmk/|8 7~0?kgZ-?3 hKsӬD ^L;4'Z>K|9s]`Էo.57nK)Sʔ2yNސ7 zL=x[ ]>]V̊Y1TOTPRR}L_ZVՀڬ6͠Q{@kY\oSjJMrwG 7r3D"C!kkk 0isehڴ6LLL K%^ԃkڹ`ŭ%K2OI5r#p} ^̋y1z'seKhKU+A٪lU",@N 9!~Rv+ݿ\vmڵ;~zi Bj6RQ*J)r"p?p?p?SSN>xL]FԈSK&! iF(_Ş{f3Ue}e}e}RF"S)),3˔288XʬeY˲IimfFQdI***)ܿ3FԘ9ox^ pIߤo uà|||2W\2Cf #include #include #include #include #include #include #include #include #include #include class helper : public QThread { Q_OBJECT public: explicit helper(QWidget *parent = 0); virtual void run(); QString recursiv; QStringList paths; QStringList files; public Q_SLOTS: void Remove_File_thumb(const QStringList &); void Remove_Dir_thumb(int recursive, const QStringList &Paths); Q_SIGNALS: void ImageSaved(bool); void RemoveFromUI_signal(QByteArray); }; #endif // HELPER_H recipe-{debupstream}-0~{revno}/widget.h0000600000000000000000000000611211754171333015542 0ustar /* This Program was written by Eric Baudach and is licensed under the GPL version 3 or newer versions of GPL. */ #ifndef WIDGET_H #define WIDGET_H #include #include #include #include #include #include #include namespace Ui { class Widget; } class MyException : public QtConcurrent::Exception { public: void raise() const { throw *this; } Exception *clone() const { return new MyException(*this); } }; class Widget : public QWidget { Q_OBJECT public: Widget(QWidget *parent = 0); ~Widget(); QSettings *Settings; QtMsgHandler MessageHandler; QStringList checkstatelist; QStringList stringlist; protected: void changeEvent(QEvent *e); private: void setTooltipText(); void adjustSizer(); void CheckVersion(); bool WidgetIcon; Ui::Widget *ui; bool ImageSavedWatcher; int current; int firstload; void adjustPosition(QWidget*); QFileSystemWatcher *watcher; void setWP(QString); QStringList ItemList; QStringList waitOnShow; void LoadSettings(); void SaveSettings(); void CreateUI(); void DateiListe(); QStringList DateiListeNeu(); int Fehler; QTimer *intervalTimer; QStringList Files; QFileDialog *FD; QSystemTrayIcon *Tray; QString currentWP(); QString WPDir; threadb *b; bool firstTime; QList SliderLabel; QMutex mutex; QString Ja; QString Nein; QMenu *TrayContextMenu; QAction *removeAction; void statisticer(); void LoopWatcher(); QTime Started; QString Find_Command; QString removedItem; Q_SIGNALS: void WPDirPath(QString); void toAddSignal(const QStringList &); void toRemSignal(const QStringList &); void shown(const QStringList &); void ThreadShouldSleep(int); void helper_remove_file_thumbs_signal (const QStringList& ); void helper_remove_dir_thumbs_signal (const int&, const QStringList& ); private slots: void DirChanged(); void toRem(const QStringList&); void itemCheckStateChanged(QListWidgetItem*); void downloadFinished(QNetworkReply*); void counterFinished(QNetworkReply*); void StartGui(); public slots: void about(); void addToList(const QImage&,const QString&); void listWidget_doubleClicked(QModelIndex); void RandomWallpaper(); void DirDialog(); void FDChangeDir(int); void TrayClick(QSystemTrayIcon::ActivationReason); void hider(); void DirListRem(); void ThreadShouldStop(); void ImageSaved(bool); void RemoveFromUI(QByteArray); private Q_SLOTS: void SaveWpStyle(int); void setAutoStart(bool); void DeleteCurrentWP(); void DeleteSelectedWP(); void listWidget_customContextMenuRequested(const QPoint &); void YesDeleteSelectedWP(QAbstractButton*); void YesDeleteCurrentWP(QAbstractButton*); void on_timeEdit_timeChanged(QTime date); }; #endif // WIDGET_H recipe-{debupstream}-0~{revno}/cortina2.svg0000600000000000000000000335665111754171333016373 0ustar image/svg+xml recipe-{debupstream}-0~{revno}/man/0000700000000000000000000000000011754171333014657 5ustar recipe-{debupstream}-0~{revno}/man/cortina.10000600000000000000000000000136711754171333016411 0ustar .TH "CORTINA" "1" "June 13, 2010" "Eric Baudach" "" .SH "NAME" Cortina \- a desktop wallpaper management application for the GNOME desktop .SH "DESCRIPTION" This manual page documents briefly the .B cortina command. .PP \fBCortina\fP completes (or replaces) the built\-in GNOME desktop wallpapers selection tool. Cortina changes wallpapers by time. It works as an tray application with an configuration interface and works great under Ubuntu Lucid and all other GNOME using distributions. .SH "OPTIONS" cortina .SH "SEE ALSO" cortina home page: https://launchpad.net/cortina/ The GNU General Public License. .SH "AUTHOR" cortina was written by Eric Baudach . .PP This manual page was written by Eric Baudach . recipe-{debupstream}-0~{revno}/threadb.h0000600000000000000000000000172211754171333015672 0ustar /* This Program was written by Eric Baudach and is licensed under the GPL version 3 or newer versions of GPL. */ #ifndef THREADB_H #define THREADB_H #include #include #include #include #include #include #include #include #include #include #include #include #include class threadb : public QThread { Q_OBJECT public: explicit threadb(QWidget *parent = 0); virtual void run(); bool shouldIStop; bool IShouldSleep; bool fileschanged; private: QMutex mutex; Q_SIGNALS: void valueChanged(const QImage&,const QString&); void dublicateadd(QString); void IShouldStop(); void ImageSaved(bool); public Q_SLOTS: void FileAdded(const QStringList &); void sleeping(int); }; #endif // THREADB_H recipe-{debupstream}-0~{revno}/helper.cpp0000600000000000000000000000550511754171333016076 0ustar /* This Program was written by Eric Baudach and is licensed under the GPL version 3 or newer versions of GPL. */ #include "helper.h" #include #include "widget.h" helper::helper(QWidget *parent) : QThread(parent) { QObject::moveToThread(this); } void helper::run() { exec(); } void helper::Remove_File_thumb(const QStringList & Files){ if(Files.length() != 0){ Q_EMIT(ImageSaved(true)); Q_FOREACH(QString file, Files) { QString thumb = QFileInfo(file).absolutePath() + "/.thumb_" + QFileInfo(file).fileName(); QFile::remove(thumb); } Q_EMIT(ImageSaved(false)); } } void helper::Remove_Dir_thumb(int recursive, const QStringList & Paths) { Q_EMIT(ImageSaved(true)); if(recursive == 2){ if(Paths.length() != 0){ Q_FOREACH(QString path, Paths) { QDir tempDir = QDir(path); QString path_bash_conform = tempDir.canonicalPath().replace(" ", "\ "); QString find = "find \""+path_bash_conform+"\" -type f -name .thumb_* -print -exec rm {} \;"; qDebug() << find; QProcess process; process.setProcessChannelMode(QProcess::MergedChannels); process.start(find ,QIODevice::ReadOnly); // Continue reading the data until EOF reached QByteArray data; while(process.waitForReadyRead()) data.append(process.readAll()); // Output the data qDebug(data.data()); qDebug("Done!"); if(data.length() != 0){ Q_EMIT(RemoveFromUI_signal(data)); } } } }else{ if(Paths.length() != 0){ Q_FOREACH(QString path, Paths) { QDir tempDir = QDir(path); QString path_bash_conform = tempDir.canonicalPath().replace(" ", "\ "); QString find = "find \""+path_bash_conform+"\" -maxdepth 1 -type f -name .thumb_* -print -exec rm {} \;"; qDebug() << find; QProcess process; process.setProcessChannelMode(QProcess::MergedChannels); process.start(find ,QIODevice::ReadOnly); // Continue reading the data until EOF reached QByteArray data; while(process.waitForReadyRead()) data.append(process.readAll()); // Output the data qDebug(data.data()); qDebug("Done!"); if(data.length() != 0){ Q_EMIT(RemoveFromUI_signal(data)); } } } } Q_EMIT(ImageSaved(false)); } recipe-{debupstream}-0~{revno}/INSTALL0000600000000000000000000000101611754171333015135 0ustar The simplest way to compile this package is: To create a deb file using the program debuild: 1. if you dont have debuild installed, type "sudo apt-get install devscripts". 2. "cd" to the directory containing the package's source code and type "debuild". 3. Then type "cd .." and install the created deb file with "sudo dpkg -i cortina*.deb" Build and install without packaging it: 1. To create the Makefile, type "qmake". 2. After that it can be build: "make". 3. Then type "make install" with root rights. recipe-{debupstream}-0~{revno}/Cortina.pro.user0000600000000000000000000005526511754171333017221 0ustar RunConfiguration0-BaseEnvironmentBase 2 RunConfiguration0-CommandLineArguments RunConfiguration0-ProFile Cortina.pro RunConfiguration0-RunConfiguration.name Cortina RunConfiguration0-UseDyldImageSuffix false RunConfiguration0-UseTerminal false RunConfiguration0-UserEnvironmentChanges RunConfiguration0-UserSetName false RunConfiguration0-UserSetWorkingDirectory false RunConfiguration0-UserWorkingDirectory RunConfiguration0-type Qt4ProjectManager.Qt4RunConfiguration activeRunConfiguration 0 activebuildconfiguration Release buildConfiguration-Debug Debug 2 0 2 buildConfiguration-Release Release 2 0 0 buildconfiguration-Debug-buildstep0 Debug DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-w11HSyKryG,guid=dca295e9329c3529a6c5c1da00015caa DESKTOP_AUTOSTART_ID=10ab6450dfd3bf6b5a133102606281617100000152010009 DESKTOP_SESSION=gnome DISPLAY=:0.0 GDMSESSION=gnome GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/qtcreator.desktop GIO_LAUNCHED_DESKTOP_FILE_PID=29294 GNOME_DESKTOP_SESSION_ID=this-is-deprecated GNOME_KEYRING_CONTROL=/tmp/keyring-8fhToQ GNOME_KEYRING_PID=15178 GPG_AGENT_INFO=/tmp/keyring-8fhToQ/gpg:0:1 GTK_MODULES=canberra-gtk-module HOME=/home/eric LANG=de_DE.UTF-8 LANGUAGE= LD_LIBRARY_PATH=/usr/lib/qtcreator LOGNAME=eric PATH=/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games PWD=/home/eric QTDIR=/usr/share/qt4 SESSION_MANAGER=local/eric-debian:@/tmp/.ICE-unix/15201,unix/eric-debian:/tmp/.ICE-unix/15201 SHELL=/bin/bash SSH_AGENT_PID=15241 SSH_AUTH_SOCK=/tmp/keyring-8fhToQ/ssh USER=eric USERNAME=eric WINDOWPATH=9 XAUTHORITY=/var/run/gdm3/auth-for-eric-OF5J6H/database XDG_DATA_DIRS=/usr/share/gnome:/usr/local/share/:/usr/share/ XDG_SESSION_COOKIE=681faae39fe92ab1dd6062fe0000000d-1331026062.642739-1801894300 /home/eric/Dokumente/cortina-1.0.0/Cortina.pro -r CONFIG+=debug -spec /usr/share/qt4/mkspecs/linux-g++ /usr/bin/qmake-qt4 false /home/eric/Dokumente/cortina-1.0.0 -spec /usr/share/qt4/mkspecs/linux-g++ CONFIG-=release buildconfiguration-Debug-buildstep1 Debug false buildconfiguration-Debug-buildstep2 Debug buildconfiguration-Debug-buildstep3 Debug buildconfiguration-Debug-cleanstep0 Debug true buildconfiguration-Release-buildstep0 Debug DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-lVcDSleNf4,guid=ee969e42427ba15f1601aa4600000038 DESKTOP_SESSION=gnome DISPLAY=:0.0 GDMSESSION=gnome GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/qtcreator.desktop GIO_LAUNCHED_DESKTOP_FILE_PID=18353 GNOME_DESKTOP_SESSION_ID=this-is-deprecated GNOME_KEYRING_CONTROL=/tmp/keyring-D68feB GNOME_KEYRING_PID=2843 GPG_AGENT_INFO=/tmp/keyring-D68feB/gpg:0:1 GTK_MODULES=canberra-gtk-module HOME=/home/eric LANG=de_DE.UTF-8 LD_LIBRARY_PATH=/usr/lib/qtcreator LOGNAME=eric PATH=/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games PWD=/home/eric PYTHONPATH=:/usr/share/terminator/ QTDIR=/usr/share/qt4 SESSION_MANAGER=local/eric-debian:@/tmp/.ICE-unix/2861,unix/eric-debian:/tmp/.ICE-unix/2861 SHELL=/bin/bash SSH_AGENT_PID=2902 SSH_AUTH_SOCK=/tmp/keyring-D68feB/ssh USER=eric USERNAME=eric WINDOWPATH=7 XAUTHORITY=/var/run/gdm3/auth-for-eric-mWYQwp/database XDG_DATA_DIRS=/usr/share/gnome:/usr/local/share/:/usr/share/ XDG_SESSION_COOKIE=681faae39fe92ab1dd6062fe0000000d-1336979912.413504-1221581239 /home/eric/Dokumente/cortina-1.0.0/Cortina.pro -r -spec /usr/share/qt4/mkspecs/linux-g++ CONFIG-=debug /usr/bin/qmake-qt4 true /home/eric/Dokumente/cortina-1.0.0 -spec /usr/share/qt4/mkspecs/linux-g++ CONFIG-=debug buildconfiguration-Release-buildstep1 Release DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-lVcDSleNf4,guid=ee969e42427ba15f1601aa4600000038 DESKTOP_SESSION=gnome DISPLAY=:0.0 GDMSESSION=gnome GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/qtcreator.desktop GIO_LAUNCHED_DESKTOP_FILE_PID=18353 GNOME_DESKTOP_SESSION_ID=this-is-deprecated GNOME_KEYRING_CONTROL=/tmp/keyring-D68feB GNOME_KEYRING_PID=2843 GPG_AGENT_INFO=/tmp/keyring-D68feB/gpg:0:1 GTK_MODULES=canberra-gtk-module HOME=/home/eric LANG=de_DE.UTF-8 LD_LIBRARY_PATH=/usr/lib/qtcreator LOGNAME=eric PATH=/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games PWD=/home/eric PYTHONPATH=:/usr/share/terminator/ QTDIR=/usr/share/qt4 SESSION_MANAGER=local/eric-debian:@/tmp/.ICE-unix/2861,unix/eric-debian:/tmp/.ICE-unix/2861 SHELL=/bin/bash SSH_AGENT_PID=2902 SSH_AUTH_SOCK=/tmp/keyring-D68feB/ssh USER=eric USERNAME=eric WINDOWPATH=7 XAUTHORITY=/var/run/gdm3/auth-for-eric-mWYQwp/database XDG_DATA_DIRS=/usr/share/gnome:/usr/local/share/:/usr/share/ XDG_SESSION_COOKIE=681faae39fe92ab1dd6062fe0000000d-1336979912.413504-1221581239 -no-obsolete Cortina.pro /usr/bin/lupdate true /home/eric/Dokumente/cortina-1.0.0 $BUILDDIR buildconfiguration-Release-buildstep2 Release DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-lVcDSleNf4,guid=ee969e42427ba15f1601aa4600000038 DESKTOP_SESSION=gnome DISPLAY=:0.0 GDMSESSION=gnome GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/qtcreator.desktop GIO_LAUNCHED_DESKTOP_FILE_PID=18353 GNOME_DESKTOP_SESSION_ID=this-is-deprecated GNOME_KEYRING_CONTROL=/tmp/keyring-D68feB GNOME_KEYRING_PID=2843 GPG_AGENT_INFO=/tmp/keyring-D68feB/gpg:0:1 GTK_MODULES=canberra-gtk-module HOME=/home/eric LANG=de_DE.UTF-8 LD_LIBRARY_PATH=/usr/lib/qtcreator LOGNAME=eric PATH=/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games PWD=/home/eric PYTHONPATH=:/usr/share/terminator/ QTDIR=/usr/share/qt4 SESSION_MANAGER=local/eric-debian:@/tmp/.ICE-unix/2861,unix/eric-debian:/tmp/.ICE-unix/2861 SHELL=/bin/bash SSH_AGENT_PID=2902 SSH_AUTH_SOCK=/tmp/keyring-D68feB/ssh USER=eric USERNAME=eric WINDOWPATH=7 XAUTHORITY=/var/run/gdm3/auth-for-eric-mWYQwp/database XDG_DATA_DIRS=/usr/share/gnome:/usr/local/share/:/usr/share/ XDG_SESSION_COOKIE=681faae39fe92ab1dd6062fe0000000d-1336979912.413504-1221581239 -compress Cortina.pro /usr/bin/lrelease true /home/eric/Dokumente/cortina-1.0.0 $BUILDDIR buildconfiguration-Release-buildstep3 Release DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-lVcDSleNf4,guid=ee969e42427ba15f1601aa4600000038 DESKTOP_SESSION=gnome DISPLAY=:0.0 GDMSESSION=gnome GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/qtcreator.desktop GIO_LAUNCHED_DESKTOP_FILE_PID=18353 GNOME_DESKTOP_SESSION_ID=this-is-deprecated GNOME_KEYRING_CONTROL=/tmp/keyring-D68feB GNOME_KEYRING_PID=2843 GPG_AGENT_INFO=/tmp/keyring-D68feB/gpg:0:1 GTK_MODULES=canberra-gtk-module HOME=/home/eric LANG=de_DE.UTF-8 LD_LIBRARY_PATH=/usr/lib/qtcreator LOGNAME=eric PATH=/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games PWD=/home/eric PYTHONPATH=:/usr/share/terminator/ QTDIR=/usr/share/qt4 SESSION_MANAGER=local/eric-debian:@/tmp/.ICE-unix/2861,unix/eric-debian:/tmp/.ICE-unix/2861 SHELL=/bin/bash SSH_AGENT_PID=2902 SSH_AUTH_SOCK=/tmp/keyring-D68feB/ssh USER=eric USERNAME=eric WINDOWPATH=7 XAUTHORITY=/var/run/gdm3/auth-for-eric-mWYQwp/database XDG_DATA_DIRS=/usr/share/gnome:/usr/local/share/:/usr/share/ XDG_SESSION_COOKIE=681faae39fe92ab1dd6062fe0000000d-1336979912.413504-1221581239 false /usr/bin/make true /home/eric/Dokumente/cortina-1.0.0 make buildconfiguration-Release-cleanstep0 Release DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-lVcDSleNf4,guid=ee969e42427ba15f1601aa4600000038 DESKTOP_SESSION=gnome DISPLAY=:0.0 GDMSESSION=gnome GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/qtcreator.desktop GIO_LAUNCHED_DESKTOP_FILE_PID=18353 GNOME_DESKTOP_SESSION_ID=this-is-deprecated GNOME_KEYRING_CONTROL=/tmp/keyring-D68feB GNOME_KEYRING_PID=2843 GPG_AGENT_INFO=/tmp/keyring-D68feB/gpg:0:1 GTK_MODULES=canberra-gtk-module HOME=/home/eric LANG=de_DE.UTF-8 LD_LIBRARY_PATH=/usr/lib/qtcreator LOGNAME=eric PATH=/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games PWD=/home/eric PYTHONPATH=:/usr/share/terminator/ QTDIR=/usr/share/qt4 SESSION_MANAGER=local/eric-debian:@/tmp/.ICE-unix/2861,unix/eric-debian:/tmp/.ICE-unix/2861 SHELL=/bin/bash SSH_AGENT_PID=2902 SSH_AUTH_SOCK=/tmp/keyring-D68feB/ssh USER=eric USERNAME=eric WINDOWPATH=7 XAUTHORITY=/var/run/gdm3/auth-for-eric-mWYQwp/database XDG_DATA_DIRS=/usr/share/gnome:/usr/local/share/:/usr/share/ XDG_SESSION_COOKIE=681faae39fe92ab1dd6062fe0000000d-1336979912.413504-1221581239 /usr/bin/debclean true /home/eric/Dokumente/cortina-1.0.0 $BUILDDIR buildconfigurations Debug Release buildstep0 buildstep1 Update translations buildstep2 Create qm translation files buildstep3 buildsteps trolltech.qt4projectmanager.qmake projectexplorer.processstep projectexplorer.processstep trolltech.qt4projectmanager.make cleanstep0 debclean cleansteps projectexplorer.processstep defaultFileEncoding System project recipe-{debupstream}-0~{revno}/widget.ui0000600000000000000000000003746011754171333015742 0ustar Eric Baudach Widget Qt::NonModal 0 0 500 500 0 0 500 500 500 500 500 500 Cortina :/icons/cortina.svg:/icons/cortina.svg 10 10 481 451 0 0 481 451 QTabWidget::North 0 477 418 Display 2 2 471 391 471 391 QFrame::Sunken QAbstractItemView::DoubleClicked true 80 80 QListView::Static false QListView::Adjust QListView::ListMode false false false false 10 400 90 17 0 1 10 10 QFrame::Plain Count: Qt::AutoText true Qt::NoTextInteraction 130 400 41 20 0 0 30 0 Qt::LeftToRight 0 false Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 0 Qt::NoTextInteraction Preferences 30 20 341 17 11 75 true PreferDefault Startup options false false 30 50 381 22 Autostart Cortina 30 70 411 22 Switch wallpaper on start 30 110 431 17 11 75 true PreferDefault Timing selection (hours:minutes:seconds) Qt::NoTextInteraction 30 176 341 17 11 75 true PreferDefault Wallpaper search directories false Qt::NoTextInteraction 170 387 111 17 Picture option: true 320 382 80 30 0 0 80 30 150 30 zoom wallpaper centered scaled stretched spanned 30 225 371 151 false QAbstractItemView::DoubleClicked 80 80 0 -1 403 228 31 31 :/icons/list-add.png:/icons/list-add.png 32 32 true 403 265 31 31 :/icons/list-remove.png:/icons/list-remove.png 32 32 true 30 200 62 17 recursiv 102 200 62 17 path 30 130 111 27 QDateTimeEdit::HourSection HH:mm:ss 11 468 90 27 0 0 90 27 200 27 1 0 about 400 470 90 27 0 0 90 27 95 27 0 0 0 0 Qt::LeftToRight false close :/Icons/window-close.png:/Icons/window-close.png false false btn_about clicked() Widget about() 50 485 249 249 recipe-{debupstream}-0~{revno}/main.cpp0000600000000000000000000000250711754171333015542 0ustar /* This Program was written by Eric Baudach and is licensed under the GPL version 3 or newer versions of GPL. */ #include #include #include int main(int argc, char *argv[]) { QApplication a(argc, argv); a.setEffectEnabled(Qt::UI_AnimateCombo, true); a.setEffectEnabled(Qt::UI_AnimateMenu, true); a.setEffectEnabled(Qt::UI_FadeTooltip, true); a.setEffectEnabled(Qt::UI_FadeMenu, true); #ifdef QT_DEBUG const QString & Translation_path = a.applicationDirPath() + "/po"; qDebug() << "Load translations from: " + Translation_path; #else const QString & Translation_path = QLibraryInfo::location(QLibraryInfo::TranslationsPath) + "/cortina"; #endif QTranslator qtTranslator; if(!qtTranslator.load(QLocale::system().name(), Translation_path)) { if(QLocale::system().name().startsWith("en_") == false) { qDebug() << "Can't load translation file:"; qDebug() << QLocale::system().name() + ".qm in " + QLibraryInfo::location(QLibraryInfo::TranslationsPath) + "/cortina"; } } a.installTranslator(&qtTranslator); a.setApplicationName("Cortina"); a.setApplicationVersion("1.1.1"); Widget w; return a.exec(); } recipe-{debupstream}-0~{revno}/debian/0000700000000000000000000000000011754171333015326 5ustar recipe-{debupstream}-0~{revno}/debian/cortina.install0000600000000000000000000000024011754171333020353 0ustar po/*.qm usr/share/qt4/translations/cortina cortina usr/bin cortina.svg usr/share/pixmaps cortina2.svg usr/share/pixmaps cortina.desktop usr/share/applications recipe-{debupstream}-0~{revno}/debian/compat0000600000000000000000000000000211754171333016526 0ustar 7 recipe-{debupstream}-0~{revno}/debian/rules0000700000000000000000000000051611754171333016410 0ustar #!/usr/bin/make -f %: dh $@ override_dh_build: dh_testdir dh_auto_configure override_dh_auto_configure: qmake -makefile -nocache "QMAKE_CFLAGS_RELEASE=-g -O2" "QMAKE_CXXFLAGS_RELEASE=-g -O2" QMAKE_LFLAGS_RELEASE=-Wl,-Bsymbolic-functions QMAKE_STRIP=: PREFIX=/usr override_dh_auto_build: lrelease Cortina.pro -silent $(make) recipe-{debupstream}-0~{revno}/debian/bzr-builder.manifest0000600000000000000000000000017411754171333021303 0ustar # bzr-builder format 0.3 deb-version {debupstream}-0~5 lp:cortina revid:eric.baudach@web.de-20120514113403-6zqmkqh1c7dnixsu recipe-{debupstream}-0~{revno}/debian/changelog0000600000000000000000000000237011754171333017204 0ustar cortina (1.1.1-0~5~precise1) precise; urgency=low * Auto build. -- Eric Baudach Mon, 14 May 2012 11:56:11 +0000 cortina (1.1.1-1) precise; urgency=low * Fixed a problem with spaces in directory names when removing a directory -- Eric Baudach Tue, 14 May 2012 13:33:56 +0100 cortina (1.1.0-1) precise; urgency=low * Fixed a problem with spaces in directory names -- Eric Baudach Tue, 14 May 2012 13:04:56 +0100 cortina (1.0.0-1) precise; urgency=low * Made a lot of improvements for performance and to avoid dublicated tasks -- Eric Baudach Tue, 06 Mar 2012 16:14:56 +0100 cortina (0.8.7-1) precise; urgency=low * Removed gconf2 depencies -- Eric Baudach Fri, 02 Mar 2012 16:25:58 +0100 cortina (0.8.6-1) precise; urgency=low * Merged translations from launchpad -- Eric Baudach Thu, 01 Mar 2012 12:09:43 +0100 cortina (0.8.5-2) precise; urgency=low * Upstream merge -- Eric Baudach Thu, 01 Mar 2012 11:34:14 +0100 cortina (0.7.3-1) unstable; urgency=low * Initial release (Closes: #586378) -- Wences Arana Mon, 27 Jun 2011 22:20:22 -0600 recipe-{debupstream}-0~{revno}/debian/watch0000600000000000000000000000015011754171333016355 0ustar version=3 http://ppa.launchpad.net/cs-sniffer/cortina/ubuntu/pool/main/c/cortina/cortina_(.+)\.tar\.gz recipe-{debupstream}-0~{revno}/debian/cortina.manpages0000600000000000000000000000001611754171333020501 0ustar man/cortina.1 recipe-{debupstream}-0~{revno}/debian/control0000600000000000000000000000121011754171333016725 0ustar Source: cortina Section: gnome Priority: optional Maintainer: Wences Arana Build-Depends: debhelper (>= 8.1~), libqt4-dev (>= 4:4.7), libglib2.0-dev (>= 2.30) Standards-Version: 3.9.3 Homepage: https://launchpad.net/cortina Package: cortina Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, libglib2.0-bin (>= 2.30), unity | gnome-shell (>= 3~), findutils Description: Wallpaper changer for gnome Cortina can rotate wallpapers by time and works as an tray application with an configuration interface. Is a simple wallpaper changer for GNOME desktop, lightweight and perform all its task quicky and swiftly. recipe-{debupstream}-0~{revno}/debian/source/0000700000000000000000000000000011754171333016626 5ustar recipe-{debupstream}-0~{revno}/debian/source/format0000600000000000000000000000001511754171333020037 0ustar 3.0 (native) recipe-{debupstream}-0~{revno}/debian/copyright0000600000000000000000000000364711754171333017275 0ustar Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 Name: cortina Maintainer: Wences Arana Source: https://launchpad.net/cortina Files: * Copyright: 2010-2012 Eric Baudach License:GPL-3 This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the complete text of the GNU General Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. Files: debian/* Copyright: 2011, Wences Arana License: GPL-3+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. On Debian systems, the full text of the GNU General Public License version 3 can be found in the file '/usr/share/common-licenses/GPL-3'. recipe-{debupstream}-0~{revno}/widget.cpp0000600000000000000000000014773711754171333016120 0ustar /* This Program was written by Eric Baudach and is licensed under the GPL version 3 or newer versions of GPL. */ #include "widget.h" #include "ui_widget.h" #include "helper.h" #include //#include void MessageOutput(QtMsgType type, const char *msg) { QString msg2; switch (type) { case QtDebugMsg: #ifdef QT_DEBUG fprintf(stderr, "Debug: %s\n", msg); #endif break; case QtWarningMsg: if(QString(msg).contains("null image")) { qDebug() << "Couldn't load image!"; return; } if(QString(msg).contains("Application asked to unregister timer")) { qDebug() << "Application asked to unregister timer, which is not registered in this thread."; return; } fprintf(stderr, "Warning: %s\n", msg); //QMessageBox::warning(NULL, "Warning", QString(msg).remove('"')); break; case QtCriticalMsg: fprintf(stderr, "Critical: %s\n", msg); msg2 = QString(msg) + "\n\nPlease report the bug at:\nhttps://bugs.launchpad.net/cortina/+filebug"; QMessageBox::critical(NULL, "Critical", QString(msg2).remove('"')); break; case QtFatalMsg: fprintf(stderr, "Fatal: %s\n", msg); msg2 = QString(msg) + "\n\nPlease report the bug at:\nhttps://bugs.launchpad.net/cortina/+filebug"; QMessageBox::critical(NULL, "Fatal", QString(msg2).remove('"')); abort(); break; } } Widget::Widget(QWidget *parent) : QWidget(parent), ui(new Ui::Widget) { MessageHandler = qInstallMsgHandler(MessageOutput); ui->setupUi(this); this->statisticer(); this->current = 0; this->firstload = 0; this->firstTime = false; this->WidgetIcon = false; this->ImageSavedWatcher = false; helper *thumb_del_thread = new helper(); // this->thumb_del_thread->autoDelete(); qRegisterMetaType("QStringList"); QObject::connect (this, SIGNAL(helper_remove_file_thumbs_signal (const QStringList& )), thumb_del_thread, SLOT(Remove_File_thumb (const QStringList& ))); QObject::connect (this, SIGNAL(helper_remove_dir_thumbs_signal (const int&, const QStringList& )), thumb_del_thread, SLOT(Remove_Dir_thumb (const int&, const QStringList& ))); thumb_del_thread->start(); Tray = new QSystemTrayIcon(QIcon(QString::fromUtf8(":/icons/cortina.svg")), this); TrayContextMenu = new QMenu(); TrayContextMenu->addAction(trUtf8("Open GUI"), this, SLOT(StartGui()), 0); const QString removeFromDiskString = QString(trUtf8("remove from disk")); removeAction = new QAction(removeFromDiskString, this); connect(removeAction, SIGNAL(triggered()), this, SLOT(DeleteCurrentWP())); QMenu *CurrentWallpaper = new QMenu(trUtf8("Current wallpaper")); CurrentWallpaper->addAction(removeAction); if(!QFileInfo(this->currentWP()).isWritable()) { removeAction->setEnabled(false); } TrayContextMenu->addMenu(CurrentWallpaper); TrayContextMenu->addSeparator(); TrayContextMenu->addAction(trUtf8("Exit"), this, SLOT(close()), 0); this->Tray->setContextMenu(TrayContextMenu); setTooltipText(); Tray->show(); if(!connect(this->Tray, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(TrayClick(QSystemTrayIcon::ActivationReason)))) { qDebug() << "Tray Connect Failure!"; } connect(ui->listWidget_Dirs, SIGNAL(itemChanged(QListWidgetItem*)), this, SLOT(itemCheckStateChanged(QListWidgetItem*))); connect(ui->comboBox_wpstyle, SIGNAL(currentIndexChanged(int)), this, SLOT(SaveWpStyle(int))); Settings = new QSettings(QSettings::NativeFormat,QSettings::UserScope,QString("Cortina"),QString("Cortina"), NULL); b = new threadb(); connect(b, SIGNAL(ImageSaved(bool)), this, SLOT(ImageSaved(bool))); connect(thumb_del_thread, SIGNAL(ImageSaved(bool)), this, SLOT(ImageSaved(bool))); connect(thumb_del_thread, SIGNAL(RemoveFromUI_signal(QByteArray)), this, SLOT(RemoveFromUI(QByteArray))); connect(this, SIGNAL(ThreadShouldSleep(int)), this->b, SLOT(sleeping(int)), Qt::AutoConnection); this->CreateUI(); watcher = new QFileSystemWatcher(); watcher->connect(watcher, SIGNAL(directoryChanged(QString)), this, SLOT(DirChanged())); this->LoadSettings(); this->ui->listWidget->setContextMenuPolicy(Qt::CustomContextMenu); connect(ui->btn_close, SIGNAL(clicked()), this, SLOT(hider())); if(!connect(ui->listWidget, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(listWidget_doubleClicked(QModelIndex)))) { qDebug() << "listWidget Connect Failure!"; } if(!connect(ui->listWidget, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(listWidget_customContextMenuRequested(const QPoint &)))) { qDebug() << "listWidget Connect Failure!"; } if(!connect(ui->checkBox_loadOnStartup, SIGNAL(toggled(bool)), this, SLOT(setAutoStart(bool)))) { qDebug() << "checkBox_loadOnStartup Connect Failure!"; } connect(this, SIGNAL(toAddSignal(const QStringList &)), b, SLOT(FileAdded(const QStringList &)), Qt::AutoConnection); connect(this, SIGNAL(shown(const QStringList &)), b, SLOT(FileAdded(const QStringList &))); connect(this, SIGNAL(toRemSignal(const QStringList &)), this, SLOT(toRem(const QStringList &))); connect(this->b, SIGNAL(valueChanged(const QImage &,const QString &)), this, SLOT(addToList(const QImage &,const QString &)), Qt::AutoConnection); this->b->start(); this->DateiListe(); if(ui->checkBox_changeWPOnStartup->checkState() == Qt::Checked) { RandomWallpaper(); } Started = QTime::currentTime(); } void Widget::setTooltipText(){ QString Pfad = QFileInfo(this->currentWP()).absolutePath(); QString Datei = QFileInfo(this->currentWP()).fileName(); QPixmap currentpix = QPixmap(this->currentWP()); const QString text = trUtf8("Filename: %1\nPath: %2\nResolution: %3x%4").arg(Datei).arg(Pfad).arg(currentpix.width()).arg(currentpix.height()); Tray->setToolTip(text); currentpix = QPixmap(); currentpix.detach(); } void Widget::statisticer(){ QFile* installed = new QFile(QDir::homePath() + "/.gconf/apps/Cortina/installed"); if(installed->exists() == false) { QUrl url = QUrl("http://eric32.er.funpic.de/counter.php?version=" + QApplication::applicationVersion()); QNetworkAccessManager *manager = new QNetworkAccessManager(); connect(manager, SIGNAL(finished(QNetworkReply*)), SLOT(counterFinished(QNetworkReply*))); QNetworkRequest request = QNetworkRequest(url); QString var(getenv("http_proxy")); QRegExp regex("(http://)?(.*):(\\d*)/?"); int pos = regex.indexIn(var); if(pos > -1){ QString host = regex.cap(2); int port = regex.cap(3).toInt(); QNetworkProxy proxy(QNetworkProxy::HttpProxy, host, port); QNetworkProxy::setApplicationProxy(proxy); } manager->get(request); }else { if ( installed->open(QIODevice::ReadOnly) ) { QByteArray installed_version = installed->readAll(); if(installed_version != QApplication::applicationVersion()){ installed->close(); installed->remove(); this->statisticer(); } } else { QString DebugString = "Could not open file %1"; qDebug() << DebugString.arg(installed->fileName()); } } } void Widget::counterFinished(QNetworkReply* reply){ QUrl url = reply->url(); if (!reply->error()) { const QString Cortinagconfdir = QDir::homePath() + "/.gconf/apps/Cortina"; QDir *gconfCortina = new QDir(Cortinagconfdir); if(!gconfCortina->exists()) { gconfCortina->mkdir(Cortinagconfdir); } QFile* installed = new QFile(QDir::homePath() + "/.gconf/apps/Cortina/installed"); if ( installed->open(QIODevice::WriteOnly) ) { installed->write(QApplication::applicationVersion().toUtf8()); installed->close(); } else { QString DebugString = "Could not create file %1"; qDebug() << DebugString.arg(installed->fileName()); } } } void Widget::itemCheckStateChanged(QListWidgetItem* item){ if(firstload > 0) { QStringList stringlist = Settings->value("listWidget_Dirs").toStringList(); QStringList checkstatelist = Settings->value("listWidget_Dirs_flags").toStringList(); // ui->listWidget_Dirs->setCurrentRow(0, QItemSelectionModel::SelectCurrent); if(stringlist.length() != 0) { //for (int i = 0; ilistWidget_Dirs->selectedItems()[0]->checkState(); // QString bla = checkstatelist.at(i); // if(bla.toInt() != bla2) { for (int q = 0; qtext() == stringlist.at(q)) { if(item->checkState() == 2) { QString ItemToChange = item->text(); for (int q = 0; qlistWidget_Dirs->selectedItems()[0]->setCheckState(Qt::Unchecked); QMessageBox::information(this, trUtf8("dublicate detected"), dublicateString); return; } else { checkstatelist.replace(q, "2"); } } else if(stringlist.length() == 1){ checkstatelist.replace(q, "2"); } } } else { checkstatelist.replace(q, "0"); } Settings->setValue("listWidget_Dirs_flags", checkstatelist); this->DirChanged(); } } // } //} ui->listWidget_Dirs->setCurrentRow(ui->listWidget_Dirs->currentRow() + 1, QItemSelectionModel::SelectCurrent); } } } void Widget::ThreadShouldStop(){ this->SaveSettings(); this->b->terminate(); delete this->b; delete ui; } Widget::~Widget() { this->SaveSettings(); if(b->isRunning()) { connect(this->b, SIGNAL(IShouldStop()), this, SLOT(ThreadShouldStop())); this->b->shouldIStop = true; } else { this->SaveSettings(); this->b->terminate(); delete this->b; delete ui; } } void Widget::hider(){ mutex.lock(); this->b->IShouldSleep = true; mutex.unlock(); this->hide(); } void Widget::setAutoStart(bool set){ QDir autostartdir = QDir(QDir::homePath() + "/.config/autostart"); if(!autostartdir.exists()){ if(!autostartdir.mkdir(QDir::homePath() + "/.config/autostart")){ qWarning() << "Autostart could not be activated: "+ QDir::homePath() + "/.config/autostart" +" could not be created!" ; } } QFile *startfile = new QFile(QDir::homePath() + "/.config/autostart/cortina.desktop"); if(set) { QByteArray FileData = QString("[Desktop Entry]\nType=Application\nExec="%QApplication::applicationFilePath()%"\nHidden=false\nNoDisplay=false\nX-GNOME-Autostart-enabled=true\nName=Cortina").toUtf8(); if(!startfile->exists()) { if(startfile->open(QIODevice::WriteOnly)) { int returnStartFile = startfile->write(FileData); if(returnStartFile != -1 && returnStartFile == FileData.size()) { startfile->flush(); startfile->close(); } else { qDebug() << "Failure while writing to autostart file"; } } } else { if(startfile->size() != FileData.size()) { if(!startfile->remove()) { qDebug() << "cant remove startup file!"; } this->setAutoStart(set); } } } else { if(startfile->exists()) { if(!startfile->remove()) { qDebug() << "cant remove startup file!"; } } } } void Widget::StartGui(){ b->start(); emit(this->shown(waitOnShow)); this->waitOnShow.clear(); mutex.lock(); this->b->IShouldSleep = 0; mutex.unlock(); this->show(); if(!this->firstTime) { this->b->fileschanged = false; emit(toAddSignal(Files)); this->CheckVersion(); firstTime=true; } } void Widget::DeleteCurrentWP(){ QString toRemove = this->currentWP(); if(!QFileInfo(toRemove).isWritable()) { qWarning() << QString("Couldn't remove %1 - insufficent permissions.").arg(toRemove); } else { if(toRemove != ""){ QMessageBox *msgBox = new QMessageBox(this); msgBox->setText(trUtf8("Do you really want to delete this image from disk?")); msgBox->setStandardButtons(QMessageBox::Yes |QMessageBox::No); connect(msgBox, SIGNAL(buttonClicked(QAbstractButton*)), this, SLOT(YesDeleteCurrentWP(QAbstractButton*)), Qt::AutoConnection); msgBox->show(); } else { return; } } } void Widget::YesDeleteCurrentWP(QAbstractButton* button){ QString toRemove = this->currentWP(); QString Pfad = QFileInfo(toRemove).absolutePath(); QString Datei = QFileInfo(toRemove).fileName(); if(button->text() == "&Yes") { this->RandomWallpaper(); if(QFile(toRemove).remove()) { // QStringList remlist; // remlist.append(toRemove); // toRem(toRemove); Tray->showMessage(trUtf8("Successful removed"), trUtf8("Filename: %1\nPath: %2").arg(Datei).arg(Pfad), QSystemTrayIcon::NoIcon, 5000); } else { if(QFile(toRemove).exists()){ qWarning() << QString("Couldn't remove %1").arg(toRemove); } else { qWarning() << QString("Couldn't remove %1 because it is not existing anymore.").arg(toRemove); } } } if(button->text() == "&No") { Tray->showMessage(trUtf8("Not removed"), trUtf8("Filename: %1\nPath: %2").arg(Datei).arg(Pfad), QSystemTrayIcon::NoIcon, 2500); } } void Widget::TrayClick(QSystemTrayIcon::ActivationReason Reason){ switch(Reason) { case QSystemTrayIcon::Trigger: on_timeEdit_timeChanged(ui->timeEdit->time()); this->RandomWallpaper(); break; case QSystemTrayIcon::Context: break; case QSystemTrayIcon::Unknown: break; case QSystemTrayIcon::DoubleClick: break; case QSystemTrayIcon::MiddleClick: break; } } void Widget::SaveWpStyle(int stylenum){ QStringList styles; styles << "zoom" << "wallpaper" << "centered" << "scaled" << "stretched" << "spanned"; QByteArray style = styles[stylenum].toUtf8(); Settings->setValue("comboBox_wpstyle", stylenum); QProcess script(this); QString path = "gsettings set org.gnome.desktop.background picture-options \'"+ style +"\'"; script.execute(path); } void Widget::SaveSettings(){ Settings->setValue("checkBox_changeWPOnStartup", ui->checkBox_changeWPOnStartup->checkState()); Settings->setValue("checkBox_loadOnStartup", ui->checkBox_loadOnStartup->checkState()); Settings->setValue("checkBox_loadOnStartup", ui->checkBox_loadOnStartup->checkState()); Settings->setValue("timeEdit", ui->timeEdit->time()); Settings->setValue("comboBox_wpstyle", ui->comboBox_wpstyle->currentIndex()); if(Settings->isWritable() == false) { qDebug() << "Cant save Settings, because the path is not writable: " << Settings->fileName(); } Settings->sync(); } void Widget::LoadSettings(){ this->ui->comboBox_wpstyle->setCurrentIndex(Settings->value("comboBox_wpstyle").toInt()); switch(Settings->value("checkBox_changeWPOnStartup").toInt()) { case 2: ui->checkBox_changeWPOnStartup->setCheckState(Qt::Checked); this->setAutoStart(true); break; default: ui->checkBox_changeWPOnStartup->setCheckState(Qt::Unchecked); this->setAutoStart(false); } switch(Settings->value("checkBox_loadOnStartup").toInt()) { case 2: ui->checkBox_loadOnStartup->setCheckState(Qt::Checked); break; default: ui->checkBox_loadOnStartup->setCheckState(Qt::Unchecked); } ui->timeEdit->setTime(Settings->value("timeEdit").toTime()); this->on_timeEdit_timeChanged(Settings->value("timeEdit").toTime()); QStringList stringlist = Settings->value("listWidget_Dirs").toStringList(); QStringList checkstatelist = Settings->value("listWidget_Dirs_flags").toStringList(); if(!stringlist.isEmpty()) { for (int i = 0; ilistWidget_Dirs, 0); tmpwidget->setFlags(Qt::ItemIsSelectable | Qt::ItemIsUserCheckable | Qt::ItemIsEnabled); if(!checkstatelist.isEmpty() && !stringlist.isEmpty()) { if(checkstatelist.at(i) == "0") { tmpwidget->setCheckState(Qt::Unchecked); } else { tmpwidget->setCheckState(Qt::Checked); } } else { qDebug() << "index out of range: checkstatelist \nTry to fix the issue..."; Settings->remove("listWidget_Dirs"); Settings->sync(); if(Settings->value("listWidget_Dirs").type() == QVariant::Invalid) { qDebug() << "The issue should be fixed. \nRetry..."; this->DirDialog(); } else { qDebug() << "The issue couldn't' be fixed. \n Please contact the Developer!"; } } } } else { this->DirDialog(); } this->firstload++; } void Widget::adjustSizer(){ ui->btn_about->adjustSize(); ui->btn_close->adjustSize(); ui->btn_DirListAdd->adjustSize(); ui->btn_DirListRem->adjustSize(); ui->checkBox_changeWPOnStartup->adjustSize(); ui->checkBox_loadOnStartup->adjustSize(); ui->comboBox_wpstyle->adjustSize(); ui->Display->adjustSize(); ui->label->adjustSize(); ui->label_changingInterval->adjustSize(); ui->label_startoptions->adjustSize(); ui->label_Style->adjustSize(); ui->label_title1_listwidget_Dirs->adjustSize(); ui->label_title2_listwidget_Dirs->adjustSize(); ui->label_wpDir->adjustSize(); ui->Preference->adjustSize(); ui->ThumbCounter->adjustSize(); } void Widget::changeEvent(QEvent *e) { QWidget::changeEvent(e); switch (e->type()) { case QEvent::LanguageChange: ui->retranslateUi(this); this->adjustSizer(); break; default: break; } } void Widget::about() { //QString License = "This program is free software: you can redistribute it and/or modify\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis package is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program. If not, see ."; QMessageBox *about = new QMessageBox(this); QString name = QApplication::applicationName(); QString version = QApplication::applicationVersion(); QString versiontr = trUtf8("version"); QLabel *website_launchpad = new QLabel(about); website_launchpad->setTextInteractionFlags(Qt::LinksAccessibleByMouse); website_launchpad->setOpenExternalLinks(true); website_launchpad->setText("Launchpad"); website_launchpad->setGeometry(35, about->height() + 30, 100, website_launchpad->height()); QLabel *website_sourcforge = new QLabel(about); website_sourcforge->setTextInteractionFlags(Qt::LinksAccessibleByMouse); website_sourcforge->setOpenExternalLinks(true); website_sourcforge->setText("Sourceforge"); website_sourcforge->setGeometry(website_launchpad->x(), website_launchpad->y() + 20, 100, website_sourcforge->height()); QLabel *email = new QLabel(about); email->setTextInteractionFlags(Qt::LinksAccessibleByMouse | Qt::TextSelectableByMouse); email->setOpenExternalLinks(true); email->setText("Eric.Baudach@web.de"); email->setGeometry(website_launchpad->x(), website_launchpad->y() + 40, 200, email->height()); about->setText(name +"\n"+ versiontr +": "+ version +"\nCopyright 2010-2012 Eric Baudach\n\n\n\n"); about->setWindowTitle(trUtf8("about")); about->show(); } QString Widget::currentWP(){ QString wp2; QProcess script(this); QStringList arguments; arguments << "get" << "org.gnome.desktop.background" << "picture-uri"; //connect(&script, SIGNAL(error(QProcess::ProcessError)), &script, SLOT(kill())); QProcess script2(this); script.start("gsettings", arguments, QIODevice::ReadWrite); // Continue reading the data until EOF reached QByteArray data; while(script.waitForReadyRead()) data.append(script.readAll()); wp2 = QUrl(data.data()).toString().remove(0,8).trimmed().remove('\''); return wp2; } void Widget::setWP(QString tempwpfile){ if(WidgetIcon == false) { this->setWindowIcon(QIcon(QString::fromUtf8(":/icons/cortina.svg"))); this->Tray->setIcon(QIcon(QString::fromUtf8(":/icons/cortina.svg"))); WidgetIcon = true; } else { WidgetIcon = false; this->setWindowIcon(QIcon(QString::fromUtf8(":/icons/cortina2.svg"))); this->Tray->setIcon(QIcon(QString::fromUtf8(":/icons/cortina2.svg"))); } // gsettings set org.gnome.desktop.background picture-uri 'file:///home/eric/Bilder/Backgrounds/town-beach-coast-1366-768-6618.jpg' QProcess script(this); QString path = "gsettings set org.gnome.desktop.background picture-uri \'"+ QUrl::fromLocalFile(tempwpfile).toEncoded(QUrl::None) +"\'"; QStringList arguments; arguments << path; QProcess script2(this); script.execute(path); if(QFileInfo(this->currentWP()).isWritable()) { removeAction->setEnabled(true); } else { removeAction->setEnabled(false); } setTooltipText(); } void Widget::addToList(const QImage& image,const QString& filename){ if(this->b->fileschanged == false) { QString fileDir = QFileInfo(filename).absolutePath(); QString filename2 = QFileInfo(filename).fileName(); QString thumb = fileDir + "/.thumb_" + filename2; QPixmap Pixmap; mutex.tryLock(); if(image.isNull()) { Pixmap = QPixmap(thumb); } else { try{ Pixmap = QPixmap::fromImage(image); } catch (...) { qDebug() << filename << " couldn't be loaded!"; return; } } ItemList.append(filename); mutex.unlock(); QPixmap & refPixmap = Pixmap; QIcon Icon = QIcon(refPixmap); const QIcon & refIcon = Icon; QString filenameWithoutPath = QFileInfo(filename).fileName(); this->ui->listWidget->addItem(new QListWidgetItem(refIcon, filenameWithoutPath, this->ui->listWidget,0)); Pixmap = QPixmap(); Icon = QIcon(); this->ui->ThumbCounter->setNum(this->ui->listWidget->count()); } } void Widget::YesDeleteSelectedWP(QAbstractButton* button){ if(button->text() == "&Yes") { QString toRemove = this->ItemList.at(this->ui->listWidget->currentIndex().row()); if(!QFileInfo(toRemove).isWritable()) { qWarning() << QString("Couldn't remove +1 - insufficent permissions.").arg(toRemove); } else { QString Pfad = QFileInfo(toRemove).absolutePath(); QString Datei = QFileInfo(toRemove).fileName(); if(QFile(toRemove).remove()) { //Tray->setToolTip(trUtf8("Filename: %1\nPath: %2").arg(Datei).arg(Pfad)); Tray->showMessage(trUtf8("Successful removed"), trUtf8("Filename: %1\nPath: %2").arg(Datei).arg(Pfad), QSystemTrayIcon::NoIcon, 5000); } else { if(QFile(toRemove).exists()){ qWarning() << QString("Couldn't remove %1").arg(toRemove); } else { qWarning() << QString("Couldn't remove %1 because it is not existing anymore.").arg(toRemove); } } } } } void Widget::DeleteSelectedWP(){ QMessageBox *msgBox = new QMessageBox(this); msgBox->setText(trUtf8("Do you really want to delete this image from disk?")); msgBox->setStandardButtons(QMessageBox::Yes |QMessageBox::No); connect(msgBox, SIGNAL(buttonClicked(QAbstractButton*)), this, SLOT(YesDeleteSelectedWP(QAbstractButton*))); msgBox->show(); } void Widget::listWidget_customContextMenuRequested(const QPoint & pointer){ QAction *Aktion = new QAction(trUtf8("delete"), ui->listWidget); connect(Aktion, SIGNAL(triggered()), this, SLOT(DeleteSelectedWP())); QMenu menu(ui->listWidget); menu.addAction( Aktion ); menu.exec(ui->listWidget->mapToGlobal( pointer )); } void Widget::listWidget_doubleClicked(QModelIndex i) { on_timeEdit_timeChanged(ui->timeEdit->time()); QString Zeile = ItemList.at(i.row()); if(QFile(Zeile).exists()) { this->setWP(Zeile); // qDebug() << "Changed Wallpaper to:" << Zeile; } else { qDebug() << "File not found! " << Zeile; } } void Widget::DirDialog(){ FD = new QFileDialog(NULL, Qt::Dialog); FD->setAcceptMode(QFileDialog::AcceptOpen); FD->setLabelText(QFileDialog::Accept, trUtf8("add")); FD->setLabelText(QFileDialog::FileType, trUtf8("File typ")); FD->setLabelText(QFileDialog::FileName, trUtf8("Directory name")); FD->setLabelText(QFileDialog::Reject, trUtf8("close")); FD->setWindowTitle(trUtf8("Choose directory...")); connect(this->FD, SIGNAL(finished(int)), this, SLOT(FDChangeDir(int))); FD->setDirectory(QDir::home()); FD->setFileMode(QFileDialog::DirectoryOnly); FD->exec(); } void Widget::FDChangeDir(int i){ // int add = 0; if(i != 0) { QStringList stringlist = Settings->value("listWidget_Dirs").toStringList(); QStringList checkstatelist = Settings->value("listWidget_Dirs_flags").toStringList(); foreach(QString selectedFile, this->FD->selectedFiles()) { for(int i = 0; ilistWidget_Dirs, 0); tmpwidget->setFlags(Qt::ItemIsSelectable | Qt::ItemIsUserCheckable | Qt::ItemIsEnabled); tmpwidget->setCheckState(Qt::Unchecked); stringlist.append(selectedFile); checkstatelist.append("0"); Settings->setValue("listWidget_Dirs", stringlist); Settings->setValue("listWidget_Dirs_flags", checkstatelist); //this->DateiListe(); this->DirChanged(); /*if(Files.count() != 0) { for(int i = 0; i < this->ItemList.count(); i++) { if(Files.contains(ItemList[i])) { Files.removeAll(ItemList[i]); } } }*/ this->b->IShouldSleep = false; this->b->fileschanged = false; //this->DateiListe(); //emit(toAddSignal(Files)); this->SaveSettings(); this->FD->deleteLater(); // } } } } void Widget::DirListRem(){ this->b->IShouldSleep = true; DateiListe(); if(this->ui->listWidget_Dirs->count() != 0) { removedItem = ui->listWidget_Dirs->selectedItems()[0]->text(); Qt::CheckState checkstate = ui->listWidget_Dirs->selectedItems()[0]->checkState(); QStringList remove_dirs; if(checkstate == Qt::Checked){ for(int i = 0; i < ItemList.length(); i++) { if(ItemList.at(i).startsWith(removedItem)){ delete this->ui->listWidget->item(i); this->ItemList.removeAt(i); this->ImageSavedWatcher = true; } this->ui->ThumbCounter->setNum(this->ui->listWidget->count()); } QDir dir(removedItem); this->watcher->removePath(removedItem); remove_dirs.append(removedItem); QFileInfoList list = dir.entryInfoList(QDir::Dirs | QDir::NoDotAndDotDot, QDir::NoSort); foreach(QFileInfo datei, list) { this->watcher->removePath(datei.absoluteFilePath()); remove_dirs.append(datei.absoluteFilePath()); } remove_dirs.clear(); remove_dirs.append(removedItem); }else{ this->watcher->removePath(removedItem); remove_dirs.append(removedItem); for(int i = 0; i < ItemList.length(); i++) { if(ItemList.at(i).startsWith(removedItem)){ delete this->ui->listWidget->item(i); this->ItemList.removeAt(i); this->ImageSavedWatcher = true; this->ui->ThumbCounter->setNum(this->ui->listWidget->count()); } } } emit(helper_remove_dir_thumbs_signal(checkstate,remove_dirs)); delete ui->listWidget_Dirs->selectedItems()[0]; this->b->fileschanged = true; } if(this->ui->listWidget_Dirs->count() == 0) { this->ItemList.clear(); this->ui->listWidget->clear(); this->ui->ThumbCounter->setNum(this->ui->listWidget->count()); this->Files.clear(); } Settings->setValue("listWidget_Dirs", stringlist); Settings->setValue("listWidget_Dirs_flags", checkstatelist); /* QStringList tmpremFiles; QDir verzeichnis = QDir(removedItem); const QStringList & SubDirs = verzeichnis.entryList(QDir::Dirs | QDir::NoDotAndDotDot, QDir::NoSort); foreach(QString File, Files) { if(SubDirs.count() != 0){ int helperCount = 0; for(int i = 0; iremove("listWidget_Dirs"); Settings->remove("listWidget_Dirs_flags"); this->ItemList.clear(); this->ui->listWidget->clear(); this->Counter = 0; this->ui->ThumbCounter->setNum(this->ui->listWidget->count()); this->Files.clear(); }*/ this->b->IShouldSleep = false; } void Widget::CheckVersion(){ QUrl url = QUrl("http://eric32.er.funpic.de/cortina/natty_current"); QNetworkAccessManager *manager = new QNetworkAccessManager(); connect(manager, SIGNAL(finished(QNetworkReply*)) , SLOT(downloadFinished(QNetworkReply*))); QString var(getenv("http_proxy")); QRegExp regex("(http://)?(.*):(\\d*)/?"); int pos = regex.indexIn(var); if(pos > -1){ QString host = regex.cap(2); int port = regex.cap(3).toInt(); QNetworkProxy proxy(QNetworkProxy::HttpProxy, host, port); QNetworkProxy::setApplicationProxy(proxy); } //qDebug() << QNetworkProxy::applicationProxy().hostName(); QNetworkRequest request = QNetworkRequest(url); manager->get(request); } void Widget::downloadFinished(QNetworkReply* reply){ QUrl url = reply->url(); if (reply->error()) { qDebug() << "Version check failed: " + reply->errorString(); } else if(reply->isReadable() && reply->size() != 0) { QByteArray buf = reply->readAll(); QString inhalt; for(int i = 0; ilayout(); layout->addItem(horizontalSpacer, layout->rowCount(), 0, 1, layout->columnCount()); QLabel *dl_launchpad = new QLabel(version); dl_launchpad->setScaledContents(true); dl_launchpad->setTextInteractionFlags(Qt::LinksAccessibleByMouse); dl_launchpad->setOpenExternalLinks(true); dl_launchpad->setText(""+trUtf8("Download from Launchpad")+""); dl_launchpad->setGeometry(10, version->height() + 15, 400, 60); QLabel *ppa = new QLabel(version); ppa->setScaledContents(true); ppa->setTextInteractionFlags(Qt::TextSelectableByMouse); ppa->setOpenExternalLinks(true); ppa->setText(trUtf8("Add my PPA") + ":\nsudo add-apt-repository ppa:cs-sniffer/cortina"); ppa->setGeometry(dl_launchpad->x(), dl_launchpad->y() + 40, 400, 60); version->updateGeometry(); version->show(); version->updateGeometry(); } } } return; reply->deleteLater(); } void Widget::CreateUI(){ this->adjustSizer(); connect(ui->btn_DirListAdd, SIGNAL(clicked()), this, SLOT(DirDialog())); connect(ui->btn_DirListRem, SIGNAL(clicked()), this, SLOT(DirListRem())); intervalTimer = new QTimer(this); connect(intervalTimer, SIGNAL(timeout()), this, SLOT(RandomWallpaper())); ui->Tab->setCurrentIndex(0); } QStringList Widget::DateiListeNeu(){ QStringList FilesNeu; QStringList stringlist = Settings->value("listWidget_Dirs").toStringList(); QStringList checkstatelist = Settings->value("listWidget_Dirs_flags").toStringList(); if(stringlist.length() != 0) { if(Settings->value("listWidget_Dirs").toStringList().length() != 0) { for (int i = 0; iFind_Command = "find \""+picdir_bash_conform+"\" -type f \( -name \"*.jpeg\" -o -name \"*.gif\" -o -name \"*.jpg\" -o -name \"*.png\" -o -name \"*.svg\" \) ! -name \".thumb_*\""; QString findDirs = "find \""+picdir_bash_conform+"\" -type d"; QProcess process; process.setProcessChannelMode(QProcess::MergedChannels); process.start(findDirs ,QIODevice::ReadOnly); // Continue reading the data until EOF reached QByteArray DirData; while(process.waitForReadyRead()) DirData.append(process.readAll()); // Output the data qDebug(DirData.data()); qDebug("Done!"); if(DirData.length() != 0){ QList dataList = DirData.split('\n'); // QList to QStringList for(int i=0; idirectories().contains(dataList[i])) { watcher->addPath(dataList[i]); } } } } } else { this->Find_Command = "find \""+picdir_bash_conform+"\" -maxdepth 1 -type f \( -name \"*.jpeg\" -o -name \"*.gif\" -o -name \"*.jpg\" -o -name \"*.png\" -o -name \"*.svg\" \) ! -name \".thumb_*\""; if(!watcher->directories().contains(picdir)) { watcher->addPath(picdir); } } QProcess process; process.setProcessChannelMode(QProcess::MergedChannels); process.start(this->Find_Command ,QIODevice::ReadOnly); // Continue reading the data until EOF reached QByteArray data; while(process.waitForReadyRead()) data.append(process.readAll()); // Output the data qDebug(data.data()); qDebug("Done!"); if(data.length() != 0){ QList dataList = data.split('\n'); // QList to QStringList for(int i=0; ivalue("listWidget_Dirs").toStringList().isEmpty()) { QStringList stringlist = Settings->value("listWidget_Dirs").toStringList(); QStringList checkstatelist = Settings->value("listWidget_Dirs_flags").toStringList(); if(stringlist.length() != 0) { if(Settings->value("listWidget_Dirs").toStringList().length() != 0) { for (int i = 0; iFind_Command = "find \""+picdir_bash_conform+"\" -type f \( -name \"*.jpeg\" -o -name \"*.gif\" -o -name \"*.jpg\" -o -name \"*.png\" -o -name \"*.svg\" \) ! -name \".thumb_*\""; QString findDirs = "find \""+picdir_bash_conform+"\" -type d"; QProcess process; process.setProcessChannelMode(QProcess::MergedChannels); process.start(findDirs ,QIODevice::ReadOnly); // Continue reading the data until EOF reached QByteArray DirData; while(process.waitForReadyRead()) DirData.append(process.readAll()); // Output the data qDebug(DirData.data()); qDebug("Done! DateiListe"); if(DirData.length() != 0){ QList dataList = DirData.split('\n'); // QList to QStringList for(int i=0; idirectories().contains(dataList[i])) { watcher->addPath(dataList[i]); } } } } } else { this->Find_Command = "find \""+picdir_bash_conform+"\" -maxdepth 1 -type f \( -name \"*.jpeg\" -o -name \"*.gif\" -o -name \"*.jpg\" -o -name \"*.png\" -o -name \"*.svg\" \) ! -name \".thumb_*\""; if(!watcher->directories().contains(picdir)) { watcher->addPath(picdir); } } QProcess process; process.setProcessChannelMode(QProcess::MergedChannels); process.start(this->Find_Command ,QIODevice::ReadOnly); // Continue reading the data until EOF reached QByteArray data; while(process.waitForReadyRead()) data.append(process.readAll()); // Output the data qDebug(data.data()); qDebug("Done! DateiListe"); if(data.length() != 0){ QList dataList = data.split('\n'); // QList to QStringList for(int i=0; iImageSavedWatcher = saved; } //void Widget::LoopWatcher(){ // qDebug() << Started; // qDebug() << QTime::currentTime().addSecs(-5); // while( Started < QTime::currentTime().addSecs(-5) ) { // QCoreApplication::processEvents(QEventLoop::AllEvents, 100); // } // //watcher->startTimer(5); // Started = QTime::currentTime(); //} void Widget::DirChanged(){ // this->LoopWatcher(); if(this->ImageSavedWatcher == false) { qDebug() << ImageSavedWatcher; // this->b->fileschanged = true; QTime dieTime = QTime::currentTime().addMSecs(100); qDebug() << "Loop start.."; qDebug() << QTime::currentTime().msec(); qDebug() << dieTime.msec(); while( QTime::currentTime() < dieTime ) { } qDebug() << "Loop end.."; qDebug() << QTime::currentTime().msec(); qDebug() << dieTime.msec(); const QStringList & NeueListe = DateiListeNeu(); const QStringList & AlteListe = Files; const int & NeueAnzahl = NeueListe.count(); const int & AlteAnzahl = AlteListe.count(); QStringList addy; const QStringList & refaddy = addy; QStringList remy; const QStringList & refremy = remy; addy.clear(); remy.clear(); qDebug() << "NeueAnzahl: " << NeueAnzahl; qDebug() << "AlteAnzahl: " << AlteAnzahl; qDebug() << "----"; int NeueAnzahltmp = NeueAnzahl; if(NeueAnzahl > AlteAnzahl) { // Datei wurde hinzugefügt: foreach(QString Datei, NeueListe) { if(NeueAnzahltmp != AlteAnzahl) { if(AlteListe.indexOf(Datei) == -1) { addy.append(Datei); NeueAnzahltmp--; } } } for(int i = 0; i < this->ItemList.count(); i++) { if(refaddy.contains(ItemList[i])) { addy.removeAll(ItemList[i]); } } if(!this->isHidden()) { this->b->fileschanged = false; emit(toAddSignal(refaddy)); this->Files.append(refaddy); } else { waitOnShow.append(refaddy); this->Files.append(refaddy); } } else if(NeueAnzahl < AlteAnzahl) { // Datei wurde gelöscht: foreach(QString Datei, AlteListe) { if(NeueListe.indexOf(Datei) == -1) { remy.append(Datei); } } this->toRem(refremy); } else if(NeueAnzahl == AlteAnzahl) { foreach(QString Datei, AlteListe) { if(!QFile(Datei).exists()) { remy.append(Datei); }/*else{ qDebug()<< this->ItemList.contains(QFileInfo(Datei).absoluteFilePath()); qDebug()<< refaddy.contains(Datei); if(NeueListe.contains(Datei) && !refaddy.contains(Datei) && !this->ItemList.contains(QFileInfo(Datei).absoluteFilePath())){ addy.append(Datei); if(!this->isHidden()) { this->b->fileschanged = false; emit(toAddSignal(refaddy)); this->Files.append(refaddy); } else { waitOnShow.append(refaddy); this->Files.append(refaddy); } } }*/ } this->toRem(refremy); } } //qDebug() << "DirChanged!"; // qDebug() << watcher->directories(); } void Widget::RemoveFromUI(QByteArray data){ QList Liste = data.split('\n'); Liste.removeLast(); for(int i=0; iui->listWidget->findItems(QFileInfo(Liste[i]).fileName(), Qt::MatchEndsWith).length(); ++z){ qDebug() << this->ui->listWidget->findItems(QFileInfo(Liste[i]).fileName(), Qt::MatchEndsWith)[z]->data(Qt::DisplayRole); delete this->ui->listWidget->findItems(QFileInfo(Liste[i]).fileName(), Qt::MatchEndsWith)[z]; int iterator = ItemList.indexOf(QRegExp("^"+QFileInfo(Liste[i]).absolutePath()+"$")); this->ItemList.removeAt(iterator); this->ui->ThumbCounter->setNum(this->ui->listWidget->count()); } this->ui->listWidget->update(); } } void Widget::toRem(const QStringList & Liste){ // emit(ThreadShouldSleep(5)); QStringList remove_files; foreach(QString remDatei, Liste) { for(int i = 0; i < ItemList.length(); i++) { if(this->ItemList.at(i) == remDatei) { delete this->ui->listWidget->item(i); this->ItemList.removeAt(i); this->ImageSavedWatcher = true; remove_files.append(remDatei); this->ui->ThumbCounter->setNum(this->ui->listWidget->count()); } } } emit(helper_remove_file_thumbs_signal(remove_files)); this->DateiListe(); this->b->IShouldSleep = false; this->ImageSavedWatcher = false; } void Widget::RandomWallpaper(){ QString WP; const int & reflenght = this->Files.length(); if(reflenght != 0) { //if(Settings->value("randomOrNot") == 2) { srand((unsigned)time(0)); int random_integer = (rand()%reflenght); const int & refrandom_integer = random_integer; WP = Files[refrandom_integer]; /* } else { if((current) != reflenght) { WP = Files[current]; current++; } else { current = 0; WP = Files[current]; } }*/ } else { QStringList stringlist = Settings->value("listWidget_Dirs").toStringList(); if(!stringlist.isEmpty()) { //this->DateiListe(); if(Files.length() == 0) { return; } this->RandomWallpaper(); } } if(QFile(WP).exists()) { this->setWP(WP); } else { qDebug() << "File not found! " << WP; } } void Widget::on_timeEdit_timeChanged(QTime date) { float hours2ms = 0; float min2ms = 0; float sec2ms = 0; if(date.hour() > 0){ hours2ms = ((date.hour() * 60) * 60) * 1000; } if(date.minute() > 0){ min2ms = (date.minute() * 60) * 1000; } if(date.second() > 0){ sec2ms = date.second() * 1000; } int msecs = hours2ms + min2ms + sec2ms; //qDebug() << msecs; if(intervalTimer->isActive()) { if(msecs != 0){ intervalTimer->setInterval(msecs); } else { intervalTimer->stop(); } } else { if(msecs != 0){ intervalTimer->start(msecs); } } } recipe-{debupstream}-0~{revno}/po/0000700000000000000000000000000011754171333014522 5ustar recipe-{debupstream}-0~{revno}/po/nl.po0000600000000000000000000000772311754171333015506 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Language: nl\n" "X-Source-Language: en\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "Beeldscherm" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "Aantal:" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "Voorkeuren" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "Startopties" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "Cortina automatisch starten" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "Verander achtergrond bij het starten" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "Zoek achtergronden in" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "Vergroot" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "bureaubladachtergrond" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "gecentreerd" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "geschaald" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "uitgerekt" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "pad" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "over" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "sluiten" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "duplicaat gevonden" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "versie" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "over" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "toevoegen" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "Mapnaam" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "sluiten" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "Kies map" #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "%1 wordt reeds gecontroleerd door %2!" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/sv.ts0000600000000000000000000002103011754171333015520 0ustar Widget Display Display Count: Preferences Preferences Startup options Autostart Cortina Switch wallpaper on start Timing selection (hours:minutes:seconds) Wallpaper search directories Picture option: zoom zoom wallpaper centered centered scaled scaled stretched stretched spanned spanned recursiv path about about close close Open GUI remove from disk Current wallpaper Exit Filename: %1 Path: %2 Resolution: %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected Do you really want to delete this image from disk? Successful removed Filename: %1 Path: %2 Not removed version about delete add File typ Directory name close Choose directory... %1 is already monitored through %2! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/tr.ts0000600000000000000000000002076711754171333015535 0ustar Widget Display Display Görüntü Count: Sayaç: Preferences Preferences Tercihler Startup options Başlangıç seçenekleri Autostart Cortina Cortina'yı otomatik başlat Switch wallpaper on start Duvar kağıdını başlangıçta değiştir Timing selection (hours:minutes:seconds) Wallpaper search directories Duvar kağıdı arama dizinleri Picture option: Resim seçeneği: zoom zoom yaklaş wallpaper duvar kağıdı centered centered ortalanmış scaled scaled ölçeklenmiş stretched stretched uzatılmış spanned spanned yayılmış recursiv özyinelemeli path yol about about hakkında close close kapat Open GUI Grafik Arayüzünü Aç remove from disk Current wallpaper Şu anki duvar kağıdı Exit Çıkış Filename: %1 Path: %2 Resolution: %3x%4 Dosya adı: %1 Yer: %2 Çözünürlük: %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected kopya bulundu Do you really want to delete this image from disk? Bu görüntüyü diskten silmek istediğinize emin misiniz? Successful removed Başarıyla silindi Filename: %1 Path: %2 Dosyaadı: %1 Yolu: %2 Not removed version sürüm about hakkında delete sil add ekle File typ Dosya Şekli Directory name Dizin ismi close kapat Choose directory... Dizin seçiniz... %1 is already monitored through %2! %1 %2 tarafından zaten gözlemleniyor! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/tr.qm0000600000000000000000000000601211754171333015507 0ustar  j Ba hT r $ ] , Z$  5r ɠ.  ~*3ci J%1 %2 taraf1ndan zaten gzlemleniyor!#%1 is already monitored through %2!Widget4Cortina'y1 otomatik ba_latAutostart CortinaWidget Dizin seiniz...Choose directory...Widget Saya:Count:Widget(^u anki duvar ka1d1Current wallpaperWidgetDizin ismiDirectory nameWidgetGrntDisplayWidgetlBu grnty diskten silmek istediinize emin misiniz?2Do you really want to delete this image from disk?Widget 1k1_ExitWidgetDosya ^ekliFile typWidget*Dosyaad1: %1 Yolu: %2Filename: %1 Path: %2WidgetNDosya ad1: %1 Yer: %2 znrlk: %3x%4'Filename: %1 Path: %2 Resolution: %3x%4Widget&Grafik Arayzn AOpen GUIWidgetResim seenei:Picture option:WidgetTercihler PreferencesWidget*Ba_lang1 seenekleriStartup optionsWidget"Ba_ar1yla silindiSuccessful removedWidgetFDuvar ka1d1n1 ba_lang1ta dei_tirSwitch wallpaper on startWidget8Duvar ka1d1 arama dizinleriWallpaper search directoriesWidgethakk1ndaaboutWidgethakk1ndaaboutaboutWidgetekleaddWidgetortalanm1_centeredWidget kapatcloseWidget kapatclosecloseWidgetsildeleteWidgetkopya bulundudublicate detectedWidgetyolpathWidgetzyinelemelirecursivWidgetleklenmi_scaledWidgetyay1lm1_spannedWidgetuzat1lm1_ stretchedWidget srmversionWidgetduvar ka1d1 wallpaperWidget yakla_zoomWidget/:Widgetrecipe-{debupstream}-0~{revno}/po/es.qm0000600000000000000000000000750111754171333015475 0ustar   Ba hT rh  ] Z$  G 5n ɠ.  9 !Tr~*3i 4%1 es supervisado por %2!#%1 is already monitored through %2!Widget>%1 ya est siendo monitorizado!%1 is already monitored!Widgetp%1 ser monitorizado dos veces Borre esa entrada antes!>%1 would be double monitored, please remove that entry before!WidgetbIniciar automaticamente Cortina al iniciar sesinAutostart CortinaWidget&Elija directorio...Choose directory...Widget Total:Count:Widget0Fondo de pantalla actualCurrent wallpaperWidget(Nombre de directorioDirectory nameWidgetMostrarDisplayWidget`Realmente desea eliminar esta imagen del disco?2Do you really want to delete this image from disk?Widget SalirExitWidgetTipo de archivoFile typWidget>Nombre del archivo: %1 Ruta: %2Filename: %1 Path: %2Widget`Nombre de archivo: %1 Ruta: %2 Resolucin: %3x%4'Filename: %1 Path: %2 Resolution: %3x%4Widget$No ha sido borrado Not removedWidgetBAbrir Interfaz Grfica de UsuarioOpen GUIWidget&Opciones de imagen:Picture option:WidgetOpciones PreferencesWidget$Opciones de inicioStartup optionsWidget8Eliminado satisfactoriamenteSuccessful removedWidget2Cambiar imagen al iniciarSwitch wallpaper on startWidgetXSeleccin de tiempo (horas:minutos:segundos)(Timing selection (hours:minutes:seconds)Widget6Buscar imagen en directorioWallpaper search directoriesWidgetAcerca deaboutWidgetacerca deaboutaboutWidgetagregaraddWidgetCentrarcenteredWidget CerrarcloseWidget cerrarclosecloseWidgetEliminardeleteWidget$detectar duplicadodublicate detectedWidgetrutapathWidgetrecursivorecursivWidget borrar del discoremove from diskWidgetEscalarscaledWidgetExpandirspannedWidgetEstirar stretchedWidgetversinversionWidget&fondo de escritorio wallpaperWidgetAmpliacinzoomWidget/:Widgetrecipe-{debupstream}-0~{revno}/po/it.qm0000600000000000000000000000715711754171333015511 0ustar  A Ba hT rT  ] ) Z$  5 ɠ. : 2 9k!T~l*3i H%1 gi controllato da parte di %2!#%1 is already monitored through %2!Widget2%1 gi sotto controllo!%1 is already monitored!Widget%1 sarebbe sotto controllo due volte; rimuovere prima quell'elemento!>%1 would be double monitored, please remove that entry before!Widget:Avvia automaticamente CortinaAutostart CortinaWidget*Scegliere la cartellaChoose directory...WidgetNumero:Count:WidgetSfondo correnteCurrent wallpaperWidget&Nome della cartellaDirectory nameWidgetImmaginiDisplayWidget@Cancellare l'immagine dal disco?2Do you really want to delete this image from disk?WidgetEsciExitWidgetTipo di fileFile typWidget4Nome file: %1 Percorso: %2Filename: %1 Path: %2WidgetZNome file: %1 Percorso: %2 Risoluzione: %3x%4'Filename: %1 Path: %2 Resolution: %3x%4WidgetNon rimossa Not removedWidgetApri GUIOpen GUIWidget$Ridimensionamento:Picture option:WidgetPreferenze PreferencesWidget Opzioni di avvioStartup optionsWidget&Immagine cancellataSuccessful removedWidget.Cambia sfondo all'avvioSwitch wallpaper on startWidgetPSelezione del tempo (ore:minuti:secondi)(Timing selection (hours:minutes:seconds)Widget*Cartelle degli sfondiWallpaper search directoriesWidgetInfoaboutWidgetInfoaboutaboutWidgetaggiungiaddWidgetCentratacenteredWidget chiudicloseWidget ChiudiclosecloseWidgetcancelladeleteWidget*Duplicato individuatodublicate detectedWidgetpercorsopathWidgetRicorsivorecursivWidget"Elimina dal discoremove from diskWidgetScalatascaledWidget EstesaspannedWidgetStirata stretchedWidgetversioneversionWidget Sfondo wallpaperWidgetIngranditazoomWidget/:Widgetrecipe-{debupstream}-0~{revno}/po/pt_BR.po0000600000000000000000000001055511754171333016100 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "Exibição" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "Quantidade:" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "Preferências" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "Opções de inicialização" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "Iniciar Cortina automaticamente" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "Trocar o papel de parede ao iniciar" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "Seleção de tempo (horas:minutos:segundos)" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "Buscar diretórios de papel de parede" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "Opção de imagem:" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "zoom" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "papel de parede" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "centralizado" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "dimensionado" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "esticado" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "estendido" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "recursivo" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "caminho" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "sobre" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "fechar" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "Abrir interface gráfica" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "remover do disco" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "Papel de parede atual" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "Sair" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" "Nome do arquivo: %1\n" "Caminho: %2\n" "Resolução: %3x%4" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "%1 seria o dobro monitorado, por favor remover essa entrada antes!" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "duplicado detectado" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "Você quer mesmo apagar esta imagem do disco?" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "Removido com sucesso" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" "Nome do arquivo: %1\n" "Caminho: %2" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "Não removido" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "versão" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "sobre" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "remover" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "adicionar" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "Tipo de arquivo" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "Nome do diretório" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "fechar" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "Escolher o diretório" #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "%1 já é monitorada através do %2!" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "%1 já está sendo monitorado!" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/fi.qm0000600000000000000000000000051611754171333015463 0ustar Widget Display Display Zobrazení Count: Počet: Preferences Preferences Nastavení Startup options Možnosti spuštění Autostart Cortina Autmaticky spustit Cortina Switch wallpaper on start Změnit pozadí při startu Timing selection (hours:minutes:seconds) Výběr časování (hodiny:minuty:vteřiny) Wallpaper search directories Složky pro hledání pozadí Picture option: Možnost obrázku: zoom zoom zvětšení wallpaper pozadí centered centered na střed scaled scaled přizpůsobené stretched stretched roztáhnuté spanned spanned rozložené recursiv opakující se path cesta about about o aplikaci close close zavřít Open GUI Otevřít rozhraní remove from disk odstranit z disku Current wallpaper Současné pozadí Exit Ukončit Filename: %1 Path: %2 Resolution: %3x%4 Název souboru: %1 Cesta: %2 Rozlišení: %3x%4 %1 would be double monitored, please remove that entry before! %1 by byl na dvou monitorech, nejdříve tento záznam odstraňte! dublicate detected zjištěn duplikát Do you really want to delete this image from disk? Opravdu chcete tento obrázek odstranit z disku? Successful removed Uspěšně odstraněn Filename: %1 Path: %2 Název souboru: %1 Cesta: %2 Not removed Neodstraněno version verze about o aplikaci delete smazat add přidat File typ Typ souboru Directory name Název složky close zavřít Choose directory... Zvolte složku... %1 is already monitored through %2! %1 je již sledováno přes %2! %1 is already monitored! %1 je již sledováno! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/fi.po0000600000000000000000000000726011754171333015467 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Language: fi\n" "X-Source-Language: en\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "" #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/ru.po0000600000000000000000000001144611754171333015520 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "Дисплей" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "Количество:" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "Параметры" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "Параметры запуска" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "Запускать Cortina автоматически" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "Меняет обои при запуске" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "Выбор по времени (ЧЧ:ММ:СС)" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "Каталог с обоями" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "Параметры картинки:" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "масштаб" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "обои" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "по центру" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "в масштабе" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "растянуто" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "растянуто" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "рекурсив" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "путь" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "Сведения о программе" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "закрыть" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "Open GUI" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "Удалить с диска" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "Задействованная фоновая картинка" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "Выход" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" "Имя файла: %1\n" "Размещение: %2\n" "Разрешение: %3x%4" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "%1 будет мониториться с двух сторон, удалите эту запись!" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "обнаружена копия" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "Вы действительно хотите удалить это изображение с диска?" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "Успешно удалено" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" "Имя файла: %1\n" "Путь: %2" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "Не удалено" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "версия" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "сведения о программе" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "удалить" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "добавить" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "Тип файла" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "Имя каталога" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "закрыть" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "Выберите каталог..." #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "%1 уже отслеживается через %2!" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "%1 уже мониторится!" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/ar.qm0000600000000000000000000000053311754171333015466 0ustar Widget Display Display Immagini Count: Numero: Preferences Preferences Preferenze Startup options Opzioni di avvio Autostart Cortina Avvia automaticamente Cortina Switch wallpaper on start Cambia sfondo all'avvio Timing selection (hours:minutes:seconds) Selezione del tempo (ore:minuti:secondi) Wallpaper search directories Cartelle degli sfondi Picture option: Ridimensionamento: zoom zoom Ingrandita wallpaper Sfondo centered centered Centrata scaled scaled Scalata stretched stretched Stirata spanned spanned Estesa recursiv Ricorsivo path percorso about about Info close close Chiudi Open GUI Apri GUI remove from disk Elimina dal disco Current wallpaper Sfondo corrente Exit Esci Filename: %1 Path: %2 Resolution: %3x%4 Nome file: %1 Percorso: %2 Risoluzione: %3x%4 %1 would be double monitored, please remove that entry before! %1 sarebbe sotto controllo due volte; rimuovere prima quell'elemento! dublicate detected Duplicato individuato Do you really want to delete this image from disk? Cancellare l'immagine dal disco? Successful removed Immagine cancellata Filename: %1 Path: %2 Nome file: %1 Percorso: %2 Not removed Non rimossa version versione about Info delete cancella add aggiungi File typ Tipo di file Directory name Nome della cartella close chiudi Choose directory... Scegliere la cartella %1 is already monitored through %2! %1 è già controllato da parte di %2! %1 is already monitored! %1 è già sotto controllo! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/pt.qm0000600000000000000000000000155211754171333015511 0ustar   Ba hTh r  ]s  Z$ R 5T ɠ. ~*3Si i6%1 265 ?@>A;V4:>2CTBLAO %2!#%1 is already monitored through %2!Widget(0?CA:0B8 7 A8AB5<>NAutostart CortinaWidget(815@VBL :0B0;>3 ...Choose directory...WidgetV;L:VABL:Count:Widget>B>G=0 H?0;5@0Current wallpaperWidget0720 :0B0;>3CDirectory nameWidget 83;O4DisplayWidgetZ8 4V9A=> E>G5B5 2840;8B8 7>1@065==O 7 48A:C?2Do you really want to delete this image from disk?Widget 8EV4ExitWidget"8? D09;CFile typWidget.<'O D09;C: %1 (;OE: %2Filename: %1 Path: %2Widgetd<'O D09;C: %1 (;OE: %2  >74V;L=0 740B=VABL: %3x%4'Filename: %1 Path: %2 Resolution: %3x%4WidgetV4:@8B8 GUIOpen GUIWidget !B8;LPicture option:Widget0@0<5B@8 PreferencesWidget?FVW 70?CA:CStartup optionsWidget #A?VH=> 2840;5=>Successful removedWidget:<V=N20B8 H?0;5@8 ?@8 70?CA:CSwitch wallpaper on startWidget$"5:8 ?>HC:C H?0;5@Wallpaper search directoriesWidget?@> ?@>3@0<CaboutWidget?@> ?@>3@0<CaboutaboutWidget 4>40B8addWidget# F5=B@VcenteredWidget0:@8B8closeWidget0:@8B8closecloseWidget2840;8B8deleteWidget&28O2;5=> ?>2B>@5==Odublicate detectedWidgetH;OEpathWidget@5:C@A82=>recursivWidget0AHB01C20B8scaledWidget0?>2=5==OspannedWidget >7BO3C20B8 stretchedWidget 25@AVOversionWidget'5@5?8F5N wallpaperWidget0AHB01zoomWidget/:Widgetrecipe-{debupstream}-0~{revno}/po/cs.po0000600000000000000000000001067011754171333015475 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" "X-Language: cs\n" "X-Source-Language: en\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "Zobrazení" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "Počet:" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "Nastavení" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "Možnosti spuštění" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "Autmaticky spustit Cortina" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "Změnit pozadí při startu" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "Výběr časování (hodiny:minuty:vteřiny)" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "Složky pro hledání pozadí" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "Možnost obrázku:" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "zvětšení" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "pozadí" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "na střed" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "přizpůsobené" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "roztáhnuté" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "rozložené" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "opakující se" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "cesta" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "o aplikaci" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "zavřít" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "Otevřít rozhraní" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "odstranit z disku" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "Současné pozadí" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "Ukončit" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" "Název souboru: %1\n" "Cesta: %2\n" "Rozlišení: %3x%4" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "%1 by byl na dvou monitorech, nejdříve tento záznam odstraňte!" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "zjištěn duplikát" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "Opravdu chcete tento obrázek odstranit z disku?" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "Uspěšně odstraněn" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" "Název souboru: %1\n" "Cesta: %2" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "Neodstraněno" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "verze" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "o aplikaci" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "smazat" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "přidat" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "Typ souboru" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "Název složky" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "zavřít" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "Zvolte složku..." #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "%1 je již sledováno přes %2!" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "%1 je již sledováno!" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/ca.qm0000600000000000000000000000052111754171333015444 0ustar Widget Display Display දර්ශනය Count: ගණනය: Preferences Preferences අභිරුචියන් Startup options ආරම්භ කිරීමේ විකල්ප Autostart Cortina Cortina ස්වංක්‍රීය ආරම්භය Switch wallpaper on start ආරම්භයේ පසුතල මාරුවීම Timing selection (hours:minutes:seconds) Wallpaper search directories පසුතල සෙවුම් ගොනු Picture option: පින්තූර විකල්ප zoom zoom සූමකරණය wallpaper පසුතල centered centered මැදට යොමු කරනවා scaled scaled පරිමාණ ගත කිරීම stretched stretched විහිදෙවනවා spanned spanned පාරායත ගත කිරීම recursiv ආවර්තනික path මාර්ගය about about ගැන close close වසන්න Open GUI GUI විවෘත්ත කරන්න remove from disk Current wallpaper වර්තමාන පසුතල Exit නික්මීම Filename: %1 Path: %2 Resolution: %3x%4 ගොනු නාමය: %1 මාර්ගය: %2 විභේදනය : %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected එකම දෙය දෙවරක් යෙදීමක් ඇත Do you really want to delete this image from disk? ඔබට මෙම පින්තූරය මකා දැමීමට ඇත්තටම අවශ්‍යද? Successful removed සාර්ථකව ඉවත්කරන ලදි Filename: %1 Path: %2 ගොනු නාමය: %1 මාර්ගය: %2 Not removed version අනුවාදුය about ගැන delete මකා දමන්න add එකතු කරන්න File typ ගොනුවේ වර්ගය Directory name බහාළුම් නාමය close වසන්න Choose directory... බහාළුම් තෝරන්න... %1 is already monitored through %2! %1 මෙය දැනටමත් මගින් %2 විශ්ලේෂණය කර ඇත ! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/th.po0000600000000000000000000000725111754171333015504 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Language: th\n" "X-Source-Language: en\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "" #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/ko.qm0000600000000000000000000000467211754171333015505 0ustar m ~ Ba hT| r  ] & Z$+  54 ɠ. p~*3+iY>%1@() %2D(|) ѵt t 0X LjµȲ!#%1 is already monitored through %2!WidgetCortina ǐ ǑAutostart CortinaWidget Ѡ ...Choose directory...Widget֟:Count:WidgetǬ  Tt 0Current wallpaperWidget MѠDirectory nameWidget\DisplayWidget4и\ ¤l t t| XܬµȮL?2Do you really want to delete this image from disk?Widget | File typWidget |: %1 \: %2Filename: %1 Path: %2Widget2 |: %1 \: %2 t: %3x%4'Filename: %1 Path: %2 Resolution: %3x%4Widget m:Picture option:Widget X $ PreferencesWidgetǑ mStartup optionsWidget4׈ p(Successful removedWidgetǑ Tt 0 Switch wallpaper on startWidget  Tt 0  ѠWallpaper search directoriesWidgetaboutWidgetaboutaboutWidget͔addWidget Y 0XcenteredWidget0closeWidget0closecloseWidgetdeleteWidget  dublicate detectedWidget\pathWidgetǬrecursivWidget͔Ŵ 0XscaledWidgetD 0XspannedWidget $ 0X stretchedWidgetversionWidget Tt 0 wallpaperWidgetUzoomWidget/:Widgetrecipe-{debupstream}-0~{revno}/po/fr.po0000600000000000000000000000754711754171333015510 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Language: fr\n" "X-Source-Language: en\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "Nombre:" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "Préférences" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "Options de démarrage" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "Changer de fond d'écran au démarrage" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "zoom" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "fond d'écran" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "centré" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "échelonné" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "étiré" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "chemin" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "sur" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "quitter" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "version" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "sur" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "ajout" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "quitter" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "Choisir un répertoire..." #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/ar.po0000600000000000000000000000737211754171333015477 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : (n%100>=3 && n%100<=10) ? 3 : n%100>=11 ? 4 : 5);\n" "X-Language: ar\n" "X-Source-Language: en\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "" #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/ar.ts0000600000000000000000000002103011754171333015472 0ustar Widget Display Display Count: Preferences Preferences Startup options Autostart Cortina Switch wallpaper on start Timing selection (hours:minutes:seconds) Wallpaper search directories Picture option: zoom zoom wallpaper centered centered scaled scaled stretched stretched spanned spanned recursiv path about about close close Open GUI remove from disk Current wallpaper Exit Filename: %1 Path: %2 Resolution: %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected Do you really want to delete this image from disk? Successful removed Filename: %1 Path: %2 Not removed version about delete add File typ Directory name close Choose directory... %1 is already monitored through %2! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/ru.ts0000600000000000000000000002174611754171333015534 0ustar Widget Display Display Дисплей Count: Количество: Preferences Preferences Параметры Startup options Параметры запуска Autostart Cortina Запускать Cortina автоматически Switch wallpaper on start Меняет обои при запуске Timing selection (hours:minutes:seconds) Выбор по времени (ЧЧ:ММ:СС) Wallpaper search directories Каталог с обоями Picture option: Параметры картинки: zoom zoom масштаб wallpaper обои centered centered по центру scaled scaled в масштабе stretched stretched растянуто spanned spanned растянуто recursiv рекурсив path путь about about Сведения о программе close close закрыть Open GUI Open GUI remove from disk Удалить с диска Current wallpaper Задействованная фоновая картинка Exit Выход Filename: %1 Path: %2 Resolution: %3x%4 Имя файла: %1 Размещение: %2 Разрешение: %3x%4 %1 would be double monitored, please remove that entry before! %1 будет мониториться с двух сторон, удалите эту запись! dublicate detected обнаружена копия Do you really want to delete this image from disk? Вы действительно хотите удалить это изображение с диска? Successful removed Успешно удалено Filename: %1 Path: %2 Имя файла: %1 Путь: %2 Not removed Не удалено version версия about сведения о программе delete удалить add добавить File typ Тип файла Directory name Имя каталога close закрыть Choose directory... Выберите каталог... %1 is already monitored through %2! %1 уже отслеживается через %2! %1 is already monitored! %1 уже мониторится! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/ia.ts0000600000000000000000000002073211754171333015471 0ustar Widget Display Display Count: Preferences Preferences Preferentias Startup options Optiones de initio Autostart Cortina Autoinitiar Cortina Switch wallpaper on start Timing selection (hours:minutes:seconds) Wallpaper search directories Picture option: Option de pictura: zoom zoom zoom wallpaper centered centered scaled scaled stretched stretched spanned spanned recursiv path about about close close Open GUI Aperi GUI remove from disk Current wallpaper Exit Filename: %1 Path: %2 Resolution: %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected Do you really want to delete this image from disk? Successful removed Filename: %1 Path: %2 Not removed version about delete add File typ Directory name close Choose directory... %1 is already monitored through %2! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/uk.ts0000600000000000000000000002143611754171333015521 0ustar Widget Display Display Вигляд Count: Кількість: Preferences Preferences Параметри Startup options Опції запуску Autostart Cortina Запускати з системою Switch wallpaper on start Змінювати шпалери при запуску Timing selection (hours:minutes:seconds) Wallpaper search directories Теки пошуку шпалер Picture option: Стиль zoom zoom Масштаб wallpaper Черепицею centered centered У центрі scaled scaled Масштабувати stretched stretched Розтягувати spanned spanned Заповнення recursiv рекурсивно path шлях about about про програму close close Закрити Open GUI Відкрити GUI remove from disk Current wallpaper Поточна шпалера Exit Вихід Filename: %1 Path: %2 Resolution: %3x%4 Ім'я файлу: %1 Шлях: %2 Роздільна здатність: %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected виявлено повторення Do you really want to delete this image from disk? Ви дійсно хочете видалити зображення з диску? Successful removed Успішно видалено Filename: %1 Path: %2 Ім'я файлу: %1 Шлях: %2 Not removed version версія about про програму delete видалити add додати File typ Тип файлу Directory name Назва каталогу close Закрити Choose directory... Виберіть каталог ... %1 is already monitored through %2! %1 вже прослідковується %2! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/es.po0000600000000000000000000001070711754171333015500 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Language: de\n" "X-Source-Language: en\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "Mostrar" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "Total:" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "Opciones" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "Opciones de inicio" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "Iniciar automaticamente Cortina al iniciar sesión" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "Cambiar imagen al iniciar" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "Selección de tiempo (horas:minutos:segundos)" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "Buscar imagen en directorio" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "Opciones de imagen:" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "Ampliación" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "fondo de escritorio" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "Centrar" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "Escalar" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "Estirar" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "Expandir" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "recursivo" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "ruta" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "acerca de" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "cerrar" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "Abrir Interfaz Gráfica de Usuario" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "borrar del disco" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "Fondo de pantalla actual" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "Salir" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" "Nombre de archivo: %1\n" "Ruta: %2\n" "Resolución: %3x%4" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "%1 será monitorizado dos veces ¡Borre esa entrada antes!" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "detectar duplicado" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "¿Realmente desea eliminar esta imagen del disco?" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "Eliminado satisfactoriamente" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" "Nombre del archivo: %1\n" "Ruta: %2" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "No ha sido borrado" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "versión" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "Acerca de" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "Eliminar" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "agregar" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "Tipo de archivo" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "Nombre de directorio" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "Cerrar" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "Elija directorio..." #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "¡%1 es supervisado por %2!" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "%1 ya está siendo monitorizado!" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/fa.ts0000600000000000000000000002103011754171333015456 0ustar Widget Display Display Count: Preferences Preferences Startup options Autostart Cortina Switch wallpaper on start Timing selection (hours:minutes:seconds) Wallpaper search directories Picture option: zoom zoom wallpaper centered centered scaled scaled stretched stretched spanned spanned recursiv path about about close close Open GUI remove from disk Current wallpaper Exit Filename: %1 Path: %2 Resolution: %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected Do you really want to delete this image from disk? Successful removed Filename: %1 Path: %2 Not removed version about delete add File typ Directory name close Choose directory... %1 is already monitored through %2! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/nl.qm0000600000000000000000000000373611754171333015505 0ustar W  Ba r Z$ E ɠ. ~iJ%1 wordt reeds gecontroleerd door %2!#%1 is already monitored through %2!Widget6Cortina automatisch startenAutostart CortinaWidgetKies mapChoose directory...WidgetAantal:Count:WidgetMapnaamDirectory nameWidgetBeeldschermDisplayWidgetVoorkeuren PreferencesWidgetStartoptiesStartup optionsWidgetHVerander achtergrond bij het startenSwitch wallpaper on startWidget*Zoek achtergronden inWallpaper search directoriesWidgetoveraboutWidgetoveraboutaboutWidgettoevoegenaddWidgetgecentreerdcenteredWidgetsluitencloseWidgetsluitenclosecloseWidget$duplicaat gevondendublicate detectedWidgetpadpathWidgetgeschaaldscaledWidgetuitgerekt stretchedWidget versieversionWidget*bureaubladachtergrond wallpaperWidgetVergrootzoomWidget/:Widgetrecipe-{debupstream}-0~{revno}/po/kk.qm0000600000000000000000000000063011754171333015467 0ustar Widget Display Display Count: Nombre: Preferences Preferences Préférences Startup options Options de démarrage Autostart Cortina Switch wallpaper on start Changer de fond d'écran au démarrage Timing selection (hours:minutes:seconds) Wallpaper search directories Picture option: zoom zoom zoom wallpaper fond d'écran centered centered centré scaled scaled échelonné stretched stretched étiré spanned spanned recursiv path chemin about about sur close close quitter Open GUI remove from disk Current wallpaper Exit Filename: %1 Path: %2 Resolution: %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected Do you really want to delete this image from disk? Successful removed Filename: %1 Path: %2 Not removed version version about sur delete add ajout File typ Directory name close quitter Choose directory... Choisir un répertoire... %1 is already monitored through %2! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/pl.po0000600000000000000000000001035511754171333015503 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Language: pl\n" "X-Source-Language: en\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "Wyświetlanie" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "Ilość:" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "Preferencje" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "Opcje startowe" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "Autostart Cortina" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "Zmień tapetę na starcie" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "Katalogi wyszukiwania tapet" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "Opcje obrazu:" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "zoom" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "tapeta" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "wyśrodkowanie" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "skalowanie" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "rozciągnięcie" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "łączenie" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "powtarzanie" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "ścieżka" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "informacje o" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "zamknij" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "Otwórz Gui" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "Obecna tapeta" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "Wyjście" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" "Nazwa pliku: %1\n" "Ścieżka: %2\n" "Rozdzielczość: %3x%4" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "wykryto duplikat" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "Napewno usunąć obraz z dysku?" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "Usunięto pomyślnie" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" "Nazwa pliku: %1\n" "Ś" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "wersja" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "o" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "usuń" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "dodaj" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "Typ pliku" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "Nazwa katalogu" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "zamknij" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "Wybierz katalog..." #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "% 1 jest już monitorowane przez % 2!" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/pt_BR.qm0000600000000000000000000000744211754171333016100 0ustar  Ba hT r`  ] Z$  + 5> ɠ.  9!T~*3i B%1 j monitorada atravs do %2!#%1 is already monitored through %2!Widget8%1 j est sendo monitorado!%1 is already monitored!Widget%1 seria o dobro monitorado, por favor remover essa entrada antes!>%1 would be double monitored, please remove that entry before!Widget>Iniciar Cortina automaticamenteAutostart CortinaWidget(Escolher o diretrioChoose directory...WidgetQuantidade:Count:Widget*Papel de parede atualCurrent wallpaperWidget"Nome do diretrioDirectory nameWidgetExibioDisplayWidgetXVoc quer mesmo apagar esta imagem do disco?2Do you really want to delete this image from disk?WidgetSairExitWidgetTipo de arquivoFile typWidget>Nome do arquivo: %1 Caminho: %2Filename: %1 Path: %2Widget`Nome do arquivo: %1 Caminho: %2 Resoluo: %3x%4'Filename: %1 Path: %2 Resolution: %3x%4WidgetNo removido Not removedWidget.Abrir interface grficaOpen GUIWidget Opo de imagem:Picture option:WidgetPreferncias PreferencesWidget.Opes de inicializaoStartup optionsWidget(Removido com sucessoSuccessful removedWidgetFTrocar o papel de parede ao iniciarSwitch wallpaper on startWidgetRSeleo de tempo (horas:minutos:segundos)(Timing selection (hours:minutes:seconds)WidgetHBuscar diretrios de papel de paredeWallpaper search directoriesWidget sobreaboutWidget sobreaboutaboutWidgetadicionaraddWidgetcentralizadocenteredWidget fecharcloseWidget fecharclosecloseWidgetremoverdeleteWidget&duplicado detectadodublicate detectedWidgetcaminhopathWidgetrecursivorecursivWidget remover do discoremove from diskWidgetdimensionadoscaledWidgetestendidospannedWidgetesticado stretchedWidget versoversionWidgetpapel de parede wallpaperWidgetzoomzoomWidget/:Widgetrecipe-{debupstream}-0~{revno}/po/es.ts0000600000000000000000000002111511754171333015503 0ustar Widget Display Display Mostrar Count: Total: Preferences Preferences Opciones Startup options Opciones de inicio Autostart Cortina Iniciar automaticamente Cortina al iniciar sesión Switch wallpaper on start Cambiar imagen al iniciar Timing selection (hours:minutes:seconds) Selección de tiempo (horas:minutos:segundos) Wallpaper search directories Buscar imagen en directorio Picture option: Opciones de imagen: zoom zoom Ampliación wallpaper fondo de escritorio centered centered Centrar scaled scaled Escalar stretched stretched Estirar spanned spanned Expandir recursiv recursivo path ruta about about acerca de close close cerrar Open GUI Abrir Interfaz Gráfica de Usuario remove from disk borrar del disco Current wallpaper Fondo de pantalla actual Exit Salir Filename: %1 Path: %2 Resolution: %3x%4 Nombre de archivo: %1 Ruta: %2 Resolución: %3x%4 %1 would be double monitored, please remove that entry before! %1 será monitorizado dos veces ¡Borre esa entrada antes! dublicate detected detectar duplicado Do you really want to delete this image from disk? ¿Realmente desea eliminar esta imagen del disco? Successful removed Eliminado satisfactoriamente Filename: %1 Path: %2 Nombre del archivo: %1 Ruta: %2 Not removed No ha sido borrado version versión about Acerca de delete Eliminar add agregar File typ Tipo de archivo Directory name Nombre de directorio close Cerrar Choose directory... Elija directorio... %1 is already monitored through %2! ¡%1 es supervisado por %2! %1 is already monitored! %1 ya está siendo monitorizado! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/pl.ts0000600000000000000000000002062311754171333015512 0ustar Widget Display Display Wyświetlanie Count: Ilość: Preferences Preferences Preferencje Startup options Opcje startowe Autostart Cortina Autostart Cortina Switch wallpaper on start Zmień tapetę na starcie Timing selection (hours:minutes:seconds) Wallpaper search directories Katalogi wyszukiwania tapet Picture option: Opcje obrazu: zoom zoom zoom wallpaper tapeta centered centered wyśrodkowanie scaled scaled skalowanie stretched stretched rozciągnięcie spanned spanned łączenie recursiv powtarzanie path ścieżka about about informacje o close close zamknij Open GUI Otwórz Gui remove from disk Current wallpaper Obecna tapeta Exit Wyjście Filename: %1 Path: %2 Resolution: %3x%4 Nazwa pliku: %1 Ścieżka: %2 Rozdzielczość: %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected wykryto duplikat Do you really want to delete this image from disk? Napewno usunąć obraz z dysku? Successful removed Usunięto pomyślnie Filename: %1 Path: %2 Nazwa pliku: %1 Ś Not removed version wersja about o delete usuń add dodaj File typ Typ pliku Directory name Nazwa katalogu close zamknij Choose directory... Wybierz katalog... %1 is already monitored through %2! % 1 jest już monitorowane przez % 2! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/ca.po0000600000000000000000000000736711754171333015464 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==11 || n/1000==11 || n/1000000==11 || n/1000000000==11) ? 1 : 2);\n" "X-Language: ca\n" "X-Source-Language: en\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "" #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/pl.qm0000600000000000000000000000567511754171333015513 0ustar   Ba hTH r  ]S  Z$ 4 5, ɠ. p~*3Si =H% 1 jest ju| monitorowane przez % 2!#%1 is already monitored through %2!Widget"Autostart CortinaAutostart CortinaWidget$Wybierz katalog...Choose directory...Widget Ilo[:Count:WidgetObecna tapetaCurrent wallpaperWidgetNazwa kataloguDirectory nameWidgetWy[wietlanieDisplayWidget:Napewno usun obraz z dysku?2Do you really want to delete this image from disk?WidgetWyj[cieExitWidgetTyp plikuFile typWidget"Nazwa pliku: %1 ZFilename: %1 Path: %2Widget`Nazwa pliku: %1 Zcie|ka: %2 Rozdzielczo[: %3x%4'Filename: %1 Path: %2 Resolution: %3x%4WidgetOtwrz GuiOpen GUIWidgetOpcje obrazu:Picture option:WidgetPreferencje PreferencesWidgetOpcje startoweStartup optionsWidget$Usunito pomy[lnieSuccessful removedWidget.ZmieD tapet na starcieSwitch wallpaper on startWidget6Katalogi wyszukiwania tapetWallpaper search directoriesWidgetoaboutWidgetinformacje oaboutaboutWidget dodajaddWidgetwy[rodkowaniecenteredWidgetzamknijcloseWidgetzamknijclosecloseWidgetusuDdeleteWidget wykryto duplikatdublicate detectedWidget[cie|kapathWidgetpowtarzanierecursivWidgetskalowaniescaledWidgetBczeniespannedWidgetrozcignicie stretchedWidget wersjaversionWidget tapeta wallpaperWidgetzoomzoomWidget/:Widget , recipe-{debupstream}-0~{revno}/po/de.ts0000600000000000000000000002106711754171333015472 0ustar Widget Display Display Anzeige Count: Anzahl Bilder: Preferences Preferences Einstellungen Startup options Startoptionen Autostart Cortina Cortina beim Systemstart laden Switch wallpaper on start Beim Start Hintergrundbild wechseln Timing selection (hours:minutes:seconds) Wechselinterval (Stunden:Minuten:Sekunden) Wallpaper search directories Hintergrundbilder Verzeichnisse Picture option: Darstellung: zoom zoom Zoom wallpaper Kacheln centered centered Zentrieren scaled scaled Skalieren stretched stretched Strecken spanned spanned Spannen recursiv Rekursiv path Pfad about about Über close close schließen Open GUI Fenster anzeigen remove from disk von Festplatte löschen Current wallpaper Momentanes Hintergrundbild Exit schließen Filename: %1 Path: %2 Resolution: %3x%4 Dateiname: %1 Pfad: %2 Auflösung: %3x%4 %1 would be double monitored, please remove that entry before! %1 würde doppelt überwacht werden, bitte entfernen Sie den Eintrag vorher! dublicate detected Dublikat entdeckt Do you really want to delete this image from disk? Wollen Sie wirklich dieses Bild von der Festplatte entfernen? Successful removed Erfolgreich gelöscht Filename: %1 Path: %2 Dateiname: %1 Pfad: %2 Not removed Nicht gelöscht version Version about Über delete löschen add hinzufügen File typ Datei Typ Directory name Ordnername close schließen Choose directory... Ordner auswählen... %1 is already monitored through %2! %1 wird bereits durch %2 überwacht! %1 is already monitored! %1 wird bereits überwacht! Update available! Neue Version verfügbar! %1 is available! Download from Launchpad Download von Launchpad Add my PPA Füge mein PPA hinzu recipe-{debupstream}-0~{revno}/po/ru.qm0000600000000000000000000000717011754171333015516 0ustar  g Ba hT r> n ] = Z$   5 ɠ. X @ 9q!Tz~x*3i <%1 C65 >BA;568205BAO G5@57 %2!#%1 is already monitored through %2!Widget&%1 C65 <>=8B>@8BAO!%1 is already monitored!Widgetp%1 1C45B <>=8B>@8BLAO A 42CE AB>@>=, C40;8B5 MBC 70?8AL!>%1 would be double monitored, please remove that entry before!Widget>0?CA:0BL Cortina 02B><0B8G5A:8Autostart CortinaWidget&K15@8B5 :0B0;>3...Choose directory...Widget>;8G5AB2>:Count:Widget@0459AB2>20==0O D>=>20O :0@B8=:0Current wallpaperWidget<O :0B0;>30Directory nameWidget8A?;59DisplayWidgetpK 459AB28B5;L=> E>B8B5 C40;8BL MB> 87>1@065=85 A 48A:0?2Do you really want to delete this image from disk?Widget KE>4ExitWidget"8? D09;0File typWidget,<O D09;0: %1 CBL: %2Filename: %1 Path: %2Widget\<O D09;0: %1  07<5I5=85: %2  07@5H5=85: %3x%4'Filename: %1 Path: %2 Resolution: %3x%4Widget5 C40;5=> Not removedWidgetOpen GUIOpen GUIWidget&0@0<5B@K :0@B8=:8:Picture option:Widget0@0<5B@K PreferencesWidget"0@0<5B@K 70?CA:0Startup optionsWidget#A?5H=> C40;5=>Successful removedWidget.5=O5B >1>8 ?@8 70?CA:5Switch wallpaper on startWidget6K1>@ ?> 2@5<5=8 (''::!!)(Timing selection (hours:minutes:seconds)Widget 0B0;>3 A >1>O<8Wallpaper search directoriesWidget(A2545=8O > ?@>3@0<<5aboutWidget(!2545=8O > ?@>3@0<<5aboutaboutWidget4>1028BLaddWidget?> F5=B@CcenteredWidget70:@KBLcloseWidget70:@KBLclosecloseWidgetC40;8BLdeleteWidget >1=0@C65=0 :>?8Odublicate detectedWidget?CBLpathWidget@5:C@A82recursivWidget#40;8BL A 48A:0remove from diskWidget2 <0AHB015scaledWidget@0ABO=CB>spannedWidget@0ABO=CB> stretchedWidget 25@A8OversionWidget>1>8 wallpaperWidget<0AHB01zoomWidget/:Widgetrecipe-{debupstream}-0~{revno}/po/kk.po0000600000000000000000000000727611754171333015505 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Language: kk\n" "X-Source-Language: en\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "Дисплей" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "" #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/it.po0000600000000000000000000001052711754171333015505 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Language: it\n" "X-Source-Language: en\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "Immagini" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "Numero:" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "Preferenze" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "Opzioni di avvio" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "Avvia automaticamente Cortina" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "Cambia sfondo all'avvio" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "Selezione del tempo (ore:minuti:secondi)" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "Cartelle degli sfondi" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "Ridimensionamento:" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "Ingrandita" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "Sfondo" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "Centrata" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "Scalata" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "Stirata" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "Estesa" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "Ricorsivo" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "percorso" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "Info" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "Chiudi" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "Apri GUI" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "Elimina dal disco" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "Sfondo corrente" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "Esci" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" "Nome file: %1\n" "Percorso: %2\n" "Risoluzione: %3x%4" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "%1 sarebbe sotto controllo due volte; rimuovere prima quell'elemento!" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "Duplicato individuato" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "Cancellare l'immagine dal disco?" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "Immagine cancellata" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" "Nome file: %1\n" "Percorso: %2" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "Non rimossa" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "versione" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "Info" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "cancella" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "aggiungi" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "Tipo di file" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "Nome della cartella" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "chiudi" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "Scegliere la cartella" #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "%1 è già controllato da parte di %2!" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "%1 è già sotto controllo!" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/zh_CN.qm0000600000000000000000000000425411754171333016071 0ustar ?  Ba rp  ] Z$ [ ɠ. ~G*3i[ %1 ]~ϐ %2 gevщN!#%1 is already monitored through %2!WidgetRT/R CortinaAutostart CortinaWidget bv_U...Choose directory...Widgetep:Count:WidgetvRMvhLbfoCurrent wallpaperWidgetv_UT yDirectory nameWidgetf>y:\ODisplayWidget `xn[NxlvN-R dN*VrGT?2Do you really want to delete this image from disk?WidgetQExitWidgeteN|{WFile typWidget eNT : %1 eN_: %2Filename: %1 Path: %2Widget4eNT : %1 eN_: %2 Y'\: %3x%4'Filename: %1 Path: %2 Resolution: %3x%4WidgetPOY}n PreferencesWidgetT/RnStartup optionsWidgetR dbRSuccessful removedWidgetT/ReRcbX~Switch wallpaper on startWidgethLbfogb~v_UWallpaper search directoriesWidgetQsNaboutWidgetQsNaboutaboutWidgetmRaddWidget\EN-centeredWidgetQscloseWidgetQclosecloseWidgetR*ddeleteWidget SsY ydublicate detectedWidget_pathWidget)e>scaledWidgetbO8 stretchedWidgetrHg,versionWidgethLbfo wallpaperWidget)e>zoomWidget/:Widgetrecipe-{debupstream}-0~{revno}/po/ko.ts0000600000000000000000000002106311754171333015507 0ustar Widget Display Display 표시 Count: 횟수: Preferences Preferences 환경 설정 Startup options 시작 선택 사항 Autostart Cortina Cortina 자동 시작 Switch wallpaper on start 시작시 바탕화면 배경 변경 Timing selection (hours:minutes:seconds) Wallpaper search directories 바탕 화면 배경 검색 디렉토리 Picture option: 그림 선택 사항: zoom zoom 확대 wallpaper 바탕 화면 배경 centered centered 중앙에 배치 scaled scaled 맞추어서 배치 stretched stretched 늘려서 배치 spanned spanned 연달아서 배치 recursiv 재귀 path 경로 about about 정보 close close 닫기 Open GUI remove from disk Current wallpaper 현재 바탕 화면 배경 Exit Filename: %1 Path: %2 Resolution: %3x%4 파일명: %1 경로: %2 해상도: %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected 중복 감지 Do you really want to delete this image from disk? 정말로 디스크에서 이 이미지를 삭제하시겠습니까? Successful removed 무사히 제거됨 Filename: %1 Path: %2 파일명: %1 경로: %2 Not removed version 버전 about 정보 delete 삭제 add 추가 File typ 파일 형식 Directory name 디텍토리명 close 닫기 Choose directory... 디렉토리 선택... %1 is already monitored through %2! %1은(는) %2을(를) 통해 이미 모니터하고 있습니다! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/zh_CN.ts0000600000000000000000000002057211754171333016103 0ustar Widget Display Display 显示屏 Count: 数量: Preferences Preferences 偏好设置 Startup options 启动设置 Autostart Cortina 自动启动 Cortina Switch wallpaper on start 启动时切换壁纸 Timing selection (hours:minutes:seconds) Wallpaper search directories 桌面背景查找目录 Picture option: zoom zoom 缩放 wallpaper 桌面背景 centered centered 居中 scaled scaled 缩放 stretched stretched 拉伸 spanned spanned recursiv path 路径 about about 关于 close close 退出 Open GUI remove from disk Current wallpaper 目前的桌面背景 Exit 退出 Filename: %1 Path: %2 Resolution: %3x%4 文件名: %1 文件路径: %2 大小: %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected 发现重复项 Do you really want to delete this image from disk? 您确定要从硬盘中删除这个图片吗? Successful removed 删除成功 Filename: %1 Path: %2 文件名: %1 文件路径: %2 Not removed version 版本 about 关于 delete 刪除 add 添加 File typ 文件类型 Directory name 目录名称 close 关闭 Choose directory... 选择目录... %1 is already monitored through %2! %1 已经通过 %2 来监视了! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/fr.qm0000600000000000000000000000264711754171333015503 0ustar  * Ba hT r  ]  Z$ b 5b ɠ. ~*3ki R%1 %2 !#%1 is already monitored through %2!Widget2Cortina Autostart CortinaWidget$ ...Choose directory...Widget :Count:Widget Current wallpaperWidget Directory nameWidget DisplayWidgetV ?2Do you really want to delete this image from disk?Widget ExitWidget File typWidget0 : %1 : %2Filename: %1 Path: %2WidgetP : %1 : %2 : %3x%4'Filename: %1 Path: %2 Resolution: %3x%4Widget"GUI Open GUIWidget Picture option:Widget  PreferencesWidget& Startup optionsWidget& Successful removedWidget* Switch wallpaper on startWidget" Wallpaper search directoriesWidget aboutWidget aboutaboutWidget addWidget centeredWidget closeWidget closecloseWidget deleteWidget2 dublicate detectedWidget pathWidget recursivWidget scaledWidget spannedWidget  stretchedWidget versionWidget  wallpaperWidget zoomWidget/:Widgetrecipe-{debupstream}-0~{revno}/po/sv.po0000600000000000000000000000726011754171333015521 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Language: sv\n" "X-Source-Language: en\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "" #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/ia.qm0000600000000000000000000000142111754171333015452 0ustar Widget Display Display Count: Preferences Preferences Startup options Autostart Cortina Switch wallpaper on start Timing selection (hours:minutes:seconds) Wallpaper search directories Picture option: zoom zoom wallpaper centered centered scaled scaled stretched stretched spanned spanned recursiv path about about close close Open GUI remove from disk Current wallpaper Exit Filename: %1 Path: %2 Resolution: %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected Do you really want to delete this image from disk? Successful removed Filename: %1 Path: %2 Not removed version about delete add File typ Directory name close Choose directory... %1 is already monitored through %2! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/pt.ts0000600000000000000000000002102211754171333015514 0ustar Widget Display Display Count: Preferences Preferences Startup options Autostart Cortina Switch wallpaper on start Timing selection (hours:minutes:seconds) Wallpaper search directories Picture option: zoom zoom wallpaper centered centered centrado scaled scaled escalado stretched stretched esticado spanned spanned recursiv path about about close close Open GUI remove from disk Current wallpaper Fundo actual Exit Filename: %1 Path: %2 Resolution: %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected Do you really want to delete this image from disk? Deseja realmente remover esta imagem do disco? Successful removed Removido com sucesso Filename: %1 Path: %2 Not removed version about delete add File typ Directory name close Choose directory... %1 is already monitored through %2! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/si.po0000600000000000000000000001165411754171333015506 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "දර්ශනය" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "ගණනය:" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "අභිරුචියන්" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "ආරම්භ කිරීමේ විකල්ප" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "Cortina ස්වංක්‍රීය ආරම්භය" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "ආරම්භයේ පසුතල මාරුවීම" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "පසුතල සෙවුම් ගොනු" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "පින්තූර විකල්ප" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "සූමකරණය" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "පසුතල" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "මැදට යොමු කරනවා" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "පරිමාණ ගත කිරීම" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "විහිදෙවනවා" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "පාරායත ගත කිරීම" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "ආවර්තනික" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "මාර්ගය" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "ගැන" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "වසන්න" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "GUI විවෘත්ත කරන්න" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "වර්තමාන පසුතල" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "නික්මීම" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" "ගොනු නාමය: %1\n" "මාර්ගය: %2\n" "විභේදනය : %3x%4" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "එකම දෙය දෙවරක් යෙදීමක් ඇත" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "ඔබට මෙම පින්තූරය මකා දැමීමට ඇත්තටම අවශ්‍යද?" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "සාර්ථකව ඉවත්කරන ලදි" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" "ගොනු නාමය: %1\n" "මාර්ගය: %2" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "අනුවාදුය" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "ගැන" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "මකා දමන්න" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "එකතු කරන්න" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "ගොනුවේ වර්ගය" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "බහාළුම් නාමය" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "වසන්න" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "බහාළුම් තෝරන්න..." #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "%1 මෙය දැනටමත් මගින් %2 විශ්ලේෂණය කර ඇත !" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/translation.pot0000600000000000000000000000717011754171333017613 0ustar msgid "" msgstr "" "Project-Id-Version: 0.8.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-01 11:40+0100\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2012-03-01 10:52+0000\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "" #: ../widget.ui:159 msgctxt "Widget|" msgid "Count:" msgstr "" #: ../widget.ui:211 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "" #: ../widget.ui:231 msgctxt "Widget|" msgid "Startup options" msgstr "" #: ../widget.ui:250 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "" #: ../widget.ui:263 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "" #: ../widget.ui:284 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "" #: ../widget.ui:308 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "" #: ../widget.ui:327 msgctxt "Widget|" msgid "Picture option:" msgstr "" #: ../widget.ui:362 msgctxt "Widget|zoom" msgid "zoom" msgstr "" #: ../widget.ui:367 msgctxt "Widget|" msgid "wallpaper" msgstr "" #: ../widget.ui:372 msgctxt "Widget|centered" msgid "centered" msgstr "" #: ../widget.ui:377 msgctxt "Widget|scaled" msgid "scaled" msgstr "" #: ../widget.ui:382 msgctxt "Widget|stretched" msgid "stretched" msgstr "" #: ../widget.ui:387 msgctxt "Widget|spanned" msgid "spanned" msgstr "" #: ../widget.ui:481 msgctxt "Widget|" msgid "recursiv" msgstr "" #: ../widget.ui:494 msgctxt "Widget|" msgid "path" msgstr "" #: ../widget.ui:549 msgctxt "Widget|about" msgid "about" msgstr "" #: ../widget.ui:598 msgctxt "Widget|close" msgid "close" msgstr "" #: ../widget.cpp:64 msgctxt "Widget|" msgid "Open GUI" msgstr "" #: ../widget.cpp:65 msgctxt "Widget|" msgid "remove from disk" msgstr "" #: ../widget.cpp:68 msgctxt "Widget|" msgid "Current wallpaper" msgstr "" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Exit" msgstr "" #: ../widget.cpp:123 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" #: ../widget.cpp:212 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "" #: ../widget.cpp:215 ../widget.cpp:727 ../widget.cpp:732 msgctxt "Widget|" msgid "dublicate detected" msgstr "" #: ../widget.cpp:326 ../widget.cpp:675 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "" #: ../widget.cpp:348 ../widget.cpp:661 msgctxt "Widget|" msgid "Successful removed" msgstr "" #: ../widget.cpp:348 ../widget.cpp:358 ../widget.cpp:661 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" #: ../widget.cpp:358 msgctxt "Widget|" msgid "Not removed" msgstr "" #: ../widget.cpp:517 msgctxt "Widget|" msgid "version" msgstr "" #: ../widget.cpp:538 msgctxt "Widget|" msgid "about" msgstr "" #: ../widget.cpp:681 msgctxt "Widget|" msgid "delete" msgstr "" #: ../widget.cpp:702 msgctxt "Widget|" msgid "add" msgstr "" #: ../widget.cpp:703 msgctxt "Widget|" msgid "File typ" msgstr "" #: ../widget.cpp:704 msgctxt "Widget|" msgid "Directory name" msgstr "" #: ../widget.cpp:705 msgctxt "Widget|" msgid "close" msgstr "" #: ../widget.cpp:706 msgctxt "Widget|" msgid "Choose directory..." msgstr "" #: ../widget.cpp:725 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "" #: ../widget.cpp:731 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "" #: ../widget.cpp:917 #, qt-format msgctxt "Widget|" msgid "" "%1 is avaible!\n" "Click on the about button to see where you can get it!" msgstr "" #: ../widget.cpp:918 msgctxt "Widget|" msgid "Update avaible!" msgstr "" recipe-{debupstream}-0~{revno}/po/nl.ts0000600000000000000000000002063511754171333015513 0ustar Widget Display Display Beeldscherm Count: Aantal: Preferences Preferences Voorkeuren Startup options Startopties Autostart Cortina Cortina automatisch starten Switch wallpaper on start Verander achtergrond bij het starten Timing selection (hours:minutes:seconds) Wallpaper search directories Zoek achtergronden in Picture option: zoom zoom Vergroot wallpaper bureaubladachtergrond centered centered gecentreerd scaled scaled geschaald stretched stretched uitgerekt spanned spanned recursiv path pad about about over close close sluiten Open GUI remove from disk Current wallpaper Exit Filename: %1 Path: %2 Resolution: %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected duplicaat gevonden Do you really want to delete this image from disk? Successful removed Filename: %1 Path: %2 Not removed version versie about over delete add toevoegen File typ Directory name Mapnaam close sluiten Choose directory... Kies map %1 is already monitored through %2! %1 wordt reeds gecontroleerd door %2! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/sv.qm0000600000000000000000000000051611754171333015515 0ustar Widget Display Display Count: Preferences Preferences Startup options Autostart Cortina Switch wallpaper on start Timing selection (hours:minutes:seconds) Wallpaper search directories Picture option: zoom zoom wallpaper centered centered scaled scaled stretched stretched spanned spanned recursiv path about about close close Open GUI remove from disk Current wallpaper Exit Filename: %1 Path: %2 Resolution: %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected Do you really want to delete this image from disk? Successful removed Filename: %1 Path: %2 Not removed version about delete add File typ Directory name close Choose directory... %1 is already monitored through %2! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/fi.ts0000600000000000000000000002103011754171333015466 0ustar Widget Display Display Count: Preferences Preferences Startup options Autostart Cortina Switch wallpaper on start Timing selection (hours:minutes:seconds) Wallpaper search directories Picture option: zoom zoom wallpaper centered centered scaled scaled stretched stretched spanned spanned recursiv path about about close close Open GUI remove from disk Current wallpaper Exit Filename: %1 Path: %2 Resolution: %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected Do you really want to delete this image from disk? Successful removed Filename: %1 Path: %2 Not removed version about delete add File typ Directory name close Choose directory... %1 is already monitored through %2! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/zh_CN.po0000600000000000000000000001003011754171333016057 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "显示屏" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "数量:" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "偏好设置" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "启动设置" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "自动启动 Cortina" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "启动时切换壁纸" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "桌面背景查找目录" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "缩放" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "桌面背景" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "居中" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "缩放" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "拉伸" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "路径" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "关于" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "退出" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "目前的桌面背景" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "退出" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" "文件名: %1\n" "文件路径: %2\n" "大小: %3x%4" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "发现重复项" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "您确定要从硬盘中删除这个图片吗?" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "删除成功" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" "文件名: %1\n" "文件路径: %2" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "版本" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "关于" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "刪除" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "添加" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "文件类型" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "目录名称" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "关闭" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "选择目录..." #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "%1 已经通过 %2 来监视了!" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/kk.ts0000600000000000000000000002102411754171333015500 0ustar Widget Display Display Дисплей Count: Preferences Preferences Startup options Autostart Cortina Switch wallpaper on start Timing selection (hours:minutes:seconds) Wallpaper search directories Picture option: zoom zoom wallpaper centered centered scaled scaled stretched stretched spanned spanned recursiv path about about close close Open GUI remove from disk Current wallpaper Exit Filename: %1 Path: %2 Resolution: %3x%4 %1 would be double monitored, please remove that entry before! dublicate detected Do you really want to delete this image from disk? Successful removed Filename: %1 Path: %2 Not removed version about delete add File typ Directory name close Choose directory... %1 is already monitored through %2! %1 is already monitored! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/po/tr.po0000600000000000000000000001041311754171333015510 0ustar msgid "" msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Language: tr\n" "X-Source-Language: en\n" "X-Qt-Contexts: true\n" #: ../widget.ui:89 msgctxt "Widget|Display" msgid "Display" msgstr "Görüntü" #: ../widget.ui:171 msgctxt "Widget|" msgid "Count:" msgstr "Sayaç:" #: ../widget.ui:226 msgctxt "Widget|Preferences" msgid "Preferences" msgstr "Tercihler" #: ../widget.ui:246 msgctxt "Widget|" msgid "Startup options" msgstr "Başlangıç seçenekleri" #: ../widget.ui:265 msgctxt "Widget|" msgid "Autostart Cortina" msgstr "Cortina'yı otomatik başlat" #: ../widget.ui:278 msgctxt "Widget|" msgid "Switch wallpaper on start" msgstr "Duvar kağıdını başlangıçta değiştir" #: ../widget.ui:299 msgctxt "Widget|" msgid "Timing selection (hours:minutes:seconds)" msgstr "" #: ../widget.ui:323 msgctxt "Widget|" msgid "Wallpaper search directories" msgstr "Duvar kağıdı arama dizinleri" #: ../widget.ui:342 msgctxt "Widget|" msgid "Picture option:" msgstr "Resim seçeneği:" #: ../widget.ui:377 msgctxt "Widget|zoom" msgid "zoom" msgstr "yaklaş" #: ../widget.ui:382 msgctxt "Widget|" msgid "wallpaper" msgstr "duvar kağıdı" #: ../widget.ui:387 msgctxt "Widget|centered" msgid "centered" msgstr "ortalanmış" #: ../widget.ui:392 msgctxt "Widget|scaled" msgid "scaled" msgstr "ölçeklenmiş" #: ../widget.ui:397 msgctxt "Widget|stretched" msgid "stretched" msgstr "uzatılmış" #: ../widget.ui:402 msgctxt "Widget|spanned" msgid "spanned" msgstr "yayılmış" #: ../widget.ui:496 msgctxt "Widget|" msgid "recursiv" msgstr "özyinelemeli" #: ../widget.ui:509 msgctxt "Widget|" msgid "path" msgstr "yol" #: ../widget.ui:564 msgctxt "Widget|about" msgid "about" msgstr "hakkında" #: ../widget.ui:613 msgctxt "Widget|close" msgid "close" msgstr "kapat" #: ../widget.cpp:76 msgctxt "Widget|" msgid "Open GUI" msgstr "Grafik Arayüzünü Aç" #: ../widget.cpp:77 msgctxt "Widget|" msgid "remove from disk" msgstr "" #: ../widget.cpp:80 msgctxt "Widget|" msgid "Current wallpaper" msgstr "Şu anki duvar kağıdı" #: ../widget.cpp:88 msgctxt "Widget|" msgid "Exit" msgstr "Çıkış" #: ../widget.cpp:136 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2\n" "Resolution: %3x%4" msgstr "" "Dosya adı: %1\n" "Yer: %2\n" "Çözünürlük: %3x%4" #: ../widget.cpp:224 #, qt-format msgctxt "Widget|" msgid "%1 would be double monitored, please remove that entry before!" msgstr "" #: ../widget.cpp:227 ../widget.cpp:685 ../widget.cpp:690 msgctxt "Widget|" msgid "dublicate detected" msgstr "kopya bulundu" #: ../widget.cpp:338 ../widget.cpp:633 msgctxt "Widget|" msgid "Do you really want to delete this image from disk?" msgstr "Bu görüntüyü diskten silmek istediğinize emin misiniz?" #: ../widget.cpp:360 ../widget.cpp:619 msgctxt "Widget|" msgid "Successful removed" msgstr "Başarıyla silindi" #: ../widget.cpp:360 ../widget.cpp:370 ../widget.cpp:619 #, qt-format msgctxt "Widget|" msgid "" "Filename: %1\n" "Path: %2" msgstr "" "Dosyaadı: %1\n" "Yolu: %2" #: ../widget.cpp:370 msgctxt "Widget|" msgid "Not removed" msgstr "" #: ../widget.cpp:509 msgctxt "Widget|" msgid "version" msgstr "sürüm" #: ../widget.cpp:530 msgctxt "Widget|" msgid "about" msgstr "hakkında" #: ../widget.cpp:639 msgctxt "Widget|" msgid "delete" msgstr "sil" #: ../widget.cpp:660 msgctxt "Widget|" msgid "add" msgstr "ekle" #: ../widget.cpp:661 msgctxt "Widget|" msgid "File typ" msgstr "Dosya Şekli" #: ../widget.cpp:662 msgctxt "Widget|" msgid "Directory name" msgstr "Dizin ismi" #: ../widget.cpp:663 msgctxt "Widget|" msgid "close" msgstr "kapat" #: ../widget.cpp:664 msgctxt "Widget|" msgid "Choose directory..." msgstr "Dizin seçiniz..." #: ../widget.cpp:683 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored through %2!" msgstr "%1 %2 tarafından zaten gözlemleniyor!" #: ../widget.cpp:689 #, qt-format msgctxt "Widget|" msgid "%1 is already monitored!" msgstr "" #: ../widget.cpp:890 msgctxt "Widget|" msgid "Update available!" msgstr "" #: ../widget.cpp:890 #, qt-format msgctxt "Widget|" msgid "%1 is available!" msgstr "" #: ../widget.cpp:900 msgctxt "Widget|" msgid "Download from Launchpad" msgstr "" #: ../widget.cpp:907 msgctxt "Widget|" msgid "Add my PPA" msgstr "" recipe-{debupstream}-0~{revno}/po/de.qm0000600000000000000000000001001611754171333015451 0ustar | Ba hT i r  ] Z$ g   5 ɠ. ' 9z!T~g*3i VF%1 wird bereits durch %2 berwacht!#%1 is already monitored through %2!Widget4%1 wird bereits berwacht!%1 is already monitored!Widget%1 wrde doppelt berwacht werden, bitte entfernen Sie den Eintrag vorher!>%1 would be double monitored, please remove that entry before!Widget&Fge mein PPA hinzu Add my PPAWidget<Cortina beim Systemstart ladenAutostart CortinaWidget&Ordner auswhlen...Choose directory...WidgetAnzahl Bilder:Count:Widget4Momentanes HintergrundbildCurrent wallpaperWidgetOrdnernameDirectory nameWidgetAnzeigeDisplayWidgetzWollen Sie wirklich dieses Bild von der Festplatte entfernen?2Do you really want to delete this image from disk?Widget,Download von LaunchpadDownload from LaunchpadWidgetschlieenExitWidgetDatei TypFile typWidget,Dateiname: %1 Pfad: %2Filename: %1 Path: %2WidgetNDateiname: %1 Pfad: %2 Auflsung: %3x%4'Filename: %1 Path: %2 Resolution: %3x%4WidgetNicht gelscht Not removedWidget Fenster anzeigenOpen GUIWidgetDarstellung:Picture option:WidgetEinstellungen PreferencesWidgetStartoptionenStartup optionsWidget(Erfolgreich gelschtSuccessful removedWidgetFBeim Start Hintergrundbild wechselnSwitch wallpaper on startWidgetTWechselinterval (Stunden:Minuten:Sekunden)(Timing selection (hours:minutes:seconds)Widget.Neue Version verfgbar!Update available!Widget>Hintergrundbilder VerzeichnisseWallpaper search directoriesWidgetberaboutWidgetberaboutaboutWidgethinzufgenaddWidgetZentrierencenteredWidgetschlieencloseWidgetschlieenclosecloseWidgetlschendeleteWidget"Dublikat entdecktdublicate detectedWidgetPfadpathWidgetRekursivrecursivWidget,von Festplatte lschenremove from diskWidgetSkalierenscaledWidgetSpannenspannedWidgetStrecken stretchedWidgetVersionversionWidgetKacheln wallpaperWidgetZoomzoomWidget/:Widgetrecipe-{debupstream}-0~{revno}/po/cs.qm0000600000000000000000000000716111754171333015475 0ustar  A Ba hT r @ ]  Z$  5 ɠ. B  9S!Tv~T*3i 8%1 je ji~ sledovno pYes %2!#%1 is already monitored through %2!Widget(%1 je ji~ sledovno!%1 is already monitored!Widget|%1 by byl na dvou monitorech, nejdYve tento zznam odstraHte!>%1 would be double monitored, please remove that entry before!Widget4Autmaticky spustit CortinaAutostart CortinaWidget Zvolte slo~ku...Choose directory...Widget Po et:Count:WidgetSou asn pozadCurrent wallpaperWidgetNzev slo~kyDirectory nameWidgetZobrazenDisplayWidget^Opravdu chcete tento obrzek odstranit z disku?2Do you really want to delete this image from disk?WidgetUkon itExitWidgetTyp souboruFile typWidget6Nzev souboru: %1 Cesta: %2Filename: %1 Path: %2WidgetXNzev souboru: %1 Cesta: %2 Rozliaen: %3x%4'Filename: %1 Path: %2 Resolution: %3x%4WidgetNeodstranno Not removedWidget OtevYt rozhranOpen GUIWidget Mo~nost obrzku:Picture option:WidgetNastaven PreferencesWidget"Mo~nosti spuatnStartup optionsWidget"Uspan odstrannSuccessful removedWidget0Zmnit pozad pYi startuSwitch wallpaper on startWidgetLVbr  asovn (hodiny:minuty:vteYiny)(Timing selection (hours:minutes:seconds)Widget2Slo~ky pro hledn pozadWallpaper search directoriesWidgeto aplikaciaboutWidgeto aplikaciaboutaboutWidget pYidataddWidgetna stYedcenteredWidget zavYtcloseWidget zavYtclosecloseWidget smazatdeleteWidget zjiatn dupliktdublicate detectedWidget cestapathWidgetopakujc serecursivWidget"odstranit z diskuremove from diskWidgetpYizposobenscaledWidgetrozlo~enspannedWidgetrozthnut stretchedWidget verzeversionWidget pozad wallpaperWidgetzvtaenzoomWidget/:Widgetrecipe-{debupstream}-0~{revno}/po/pt_BR.ts0000600000000000000000000002105511754171333016105 0ustar Widget Display Display Exibição Count: Quantidade: Preferences Preferences Preferências Startup options Opções de inicialização Autostart Cortina Iniciar Cortina automaticamente Switch wallpaper on start Trocar o papel de parede ao iniciar Timing selection (hours:minutes:seconds) Seleção de tempo (horas:minutos:segundos) Wallpaper search directories Buscar diretórios de papel de parede Picture option: Opção de imagem: zoom zoom zoom wallpaper papel de parede centered centered centralizado scaled scaled dimensionado stretched stretched esticado spanned spanned estendido recursiv recursivo path caminho about about sobre close close fechar Open GUI Abrir interface gráfica remove from disk remover do disco Current wallpaper Papel de parede atual Exit Sair Filename: %1 Path: %2 Resolution: %3x%4 Nome do arquivo: %1 Caminho: %2 Resolução: %3x%4 %1 would be double monitored, please remove that entry before! %1 seria o dobro monitorado, por favor remover essa entrada antes! dublicate detected duplicado detectado Do you really want to delete this image from disk? Você quer mesmo apagar esta imagem do disco? Successful removed Removido com sucesso Filename: %1 Path: %2 Nome do arquivo: %1 Caminho: %2 Not removed Não removido version versão about sobre delete remover add adicionar File typ Tipo de arquivo Directory name Nome do diretório close fechar Choose directory... Escolher o diretório %1 is already monitored through %2! %1 já é monitorada através do %2! %1 is already monitored! %1 já está sendo monitorado! Update available! %1 is available! Download from Launchpad Add my PPA recipe-{debupstream}-0~{revno}/list-remove.png0000600000000000000000000000261111754171333017062 0ustar PNG  IHDR #ꦷgAMA asRGB cHRMz&u0`:pQ<bKGDC pHYs oyIDAThAhS[ކ6A*RBUDDDL2Rv1 VT&@ ]TR"b" E{b[qFAkP4ms,a̼~6g_?p @ .Yo,uƗ-r===tr:\4a޺oݷ5JҫP0 |*Ts1jV69A^^>@dH@u@=A.eawٻbX+~!Fѿ#8PC!?XXXc{cXuA]P@DDgq$$H„ nm 1}LFQk;W{ z n &g awwn0f >|2o;wK1X2+W\ahZV*͌13@(Q@xccdA\qꩧ|7}nuNS;Au_u_uTa/B%^WPRR---Pn{v:880\0c% |#GQcT9S9PUP;cl5[1G I$,~Z Mr#H1o70Y,Ltz:=R[ ] ] ]6MnHK;{TnvtIt <=Ȓ% uם?g '{^pƜ1g fm OBukuku+1;f`o7=fcPF 7ۛߞWUpo7@]t韘dIVXrZN7Zhj/k/k/S)@!R"O|`^YivoOS8ϝspϺgݳUjTIE}Q_@֯mP/ 3_ gzϵT-UKgq͸P~ :b݆@h 49c΀LȄLʨ~wGWqP w;w~_}Jҧ@ZY c9L6͐.w@x <Z*Vzd=YWVV:c_9)RVoEY=0 tAH\r%X<O<&7 ^{jgi9}.''xe2}@ @;wS[UDd*IENDB`recipe-{debupstream}-0~{revno}/cortina.desktop0000600000000000000000000000031711754171333017141 0ustar [Desktop Entry] Encoding=UTF-8 Name=Cortina Comment=Manage your desktop wallpapers Exec=/usr/bin/cortina Type=Application Icon=cortina StartupNotify=true Categories=Graphics X-Ubuntu-Gettext-Domain=cortina recipe-{debupstream}-0~{revno}/rc.qrc0000600000000000000000000000031011754171333015213 0ustar cortina.svg cortina2.svg list-add.png list-remove.png recipe-{debupstream}-0~{revno}/threadb.cpp0000600000000000000000000000502511754171333016225 0ustar /* This Program was written by Eric Baudach and is licensed under the GPL version 3 or newer versions of GPL. */ #include "threadb.h" #include "widget.h" #include "stdio.h" threadb::threadb(QWidget *parent) : QThread(parent) { QObject::moveToThread(this); shouldIStop = false; IShouldSleep = false; fileschanged = false; } void threadb::sleeping(int sec){ this->sleep(sec); } void threadb::FileAdded(const QStringList & Files){ QImage image = QImage(); const QImage & refimage = image; if(!shouldIStop) { const int & reflenght = Files.length(); for(int i = 0; i < reflenght; i++) { const QString & reffile = Files.at(i); if(fileschanged == true) { i = reflenght -1; } QString fileDir = QFileInfo(reffile).absolutePath(); QString filename = QFileInfo(reffile).fileName(); QString thumb = fileDir % "/.thumb_" % filename; if(!QFile(thumb).exists()) { while(IShouldSleep == true) { this->sleep(2); } mutex.lock(); try { image = QImage(reffile).scaled(80, 80, Qt::KeepAspectRatio, Qt::SmoothTransformation); } catch (...) { qDebug() << reffile << " couldn't be loaded!"; i++; } const QStringList & refFiles = Files; if(fileschanged == true) { i = reflenght -1; } if(!image.isNull()) { mutex.unlock(); Q_EMIT valueChanged(refimage,refFiles[i]); Q_EMIT(ImageSaved(true)); if(!refimage.save(thumb, 0, 100)) { qDebug() << thumb << " couldn't be saved!"; } if(!image.isNull()) { mutex.lock(); image = QImage(); mutex.unlock(); } } else { mutex.unlock(); qDebug() << "Failed to load " << refFiles[i]; } } else { image = QImage(); Q_EMIT valueChanged(refimage,reffile); } } Q_EMIT(ImageSaved(false)); } else { Q_EMIT(IShouldStop()); } } void threadb::run() { exec(); } recipe-{debupstream}-0~{revno}/Cortina.pro0000600000000000000000000000257011754171333016233 0ustar # ------------------------------------------------- # Project created by QtCreator 2010-05-20T11:56:49 # ------------------------------------------------- TARGET = cortina TEMPLATE = app SOURCES += main.cpp \ threadb.cpp \ widget.cpp \ helper.cpp HEADERS += widget.h \ threadb.h \ helper.h FORMS += widget.ui CONFIG += link_pkgconfig \ qt \ release #PKGCONFIG += libnotify QT += network TRANSLATIONS += po/ru.ts \ po/tr.ts \ po/si.ts \ po/nl.ts \ po/fa.ts \ po/uk.ts \ po/cs.ts \ po/kk.ts \ po/de.ts \ po/ca.ts \ po/fr.ts \ po/ko.ts \ po/ar.ts \ po/th.ts \ po/fi.ts \ po/pt_BR.ts \ po/es.ts \ po/ia.ts \ po/pt.ts \ po/pl.ts \ po/it.ts \ po/sv.ts \ po/zh_CN.ts icon.path = /usr/share/pixmaps icon.files += cortina.svg \ cortina2.svg target.path = /usr/bin INSTALLS += target desktop.path = /usr/share/applications desktop.files = cortina.desktop INSTALLS += desktop languages.path = /usr/share/qt4/translations/cortina languages.extra = $(QTDIR)lrelease -silent Cortina.pro INSTALLS += languages translations.path = /usr/share/qt4/translations/cortina translations.files = po/*.qm INSTALLS += translations RESOURCES += \ rc.qrc CODECFORSRC = UTF-8 CONFIG(debug) { message(debug) } CONFIG(release) { message(release) } CONFIG(debug, debug|release) { message("debug, debug|release") } CONFIG(release, debug|release) { message("release, debug|release") } recipe-{debupstream}-0~{revno}/cortina.svg0000600000000000000000000335350411754171333016303 0ustar image/svg+xml