aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/mpc/translations/mpc_plugin_sr_BA.ts
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2015-01-12 19:42:12 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2015-01-12 19:42:12 +0000
commit261ba82130d9c624a3212ff0a6059bb97a4c2b51 (patch)
treec0d5d28dcd326e181b430dd394ab44468694a942 /src/plugins/Input/mpc/translations/mpc_plugin_sr_BA.ts
parentc1f385ae6136ebb0f2d75f5cc83e97610de0fc63 (diff)
downloadqmmp-261ba82130d9c624a3212ff0a6059bb97a4c2b51.tar.gz
qmmp-261ba82130d9c624a3212ff0a6059bb97a4c2b51.tar.bz2
qmmp-261ba82130d9c624a3212ff0a6059bb97a4c2b51.zip
refactoring
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@4690 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/mpc/translations/mpc_plugin_sr_BA.ts')
0 files changed, 0 insertions, 0 deletions
* * 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 program; if not, write to the * * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include <QtGui> #include <qmmp/qmmp.h> #include "settingsdialog.h" #include "udisks2plugin.h" #include "udisks2factory.h" const GeneralProperties UDisks2Factory::properties() const { GeneralProperties properties; properties.name = tr("UDisks2 Plugin"); properties.shortName = "udisks2"; properties.hasAbout = true; properties.hasSettings = true; properties.visibilityControl = false; return properties; } QObject *UDisks2Factory::create(QObject *parent) { return new UDisks2Plugin(parent); } QDialog *UDisks2Factory::createConfigDialog(QWidget *parent) { return new SettingsDialog(parent); } void UDisks2Factory::showAbout(QWidget *parent) { QMessageBox::about (parent, tr("About UDisks2 Plugin"), tr("Qmmp UDisks2 Plugin") + "\n" + tr("This plugin provides removable devices detection using UDisks2") + "\n" + tr("Written by: Ilya Kotov <forkotov02@hotmail.ru>"));