diff --git a/CMakeLists.txt b/CMakeLists.txt index 36eb62c..593b48d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,10 +8,23 @@ set(CMAKE_AUTOUIC ON) set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON) -set(CMAKE_CXX_STANDARD 11) +set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) -find_package(Qt5 COMPONENTS Core DBus Quick LinguistTools REQUIRED) +set(QT Core Gui Quick QuickControls2 Widgets DBus Xml Concurrent) +find_package(Qt5 COMPONENTS Core DBus Quick LinguistTools REQUIRED ${QT}) + +# Get the installation directory from qmake +get_target_property(QT_QMAKE_EXECUTABLE ${Qt5Core_QMAKE_EXECUTABLE} IMPORTED_LOCATION) +if (NOT QT_QMAKE_EXECUTABLE) + message(FATAL_ERROR "qmake is not found.") +endif () + +execute_process(COMMAND ${QT_QMAKE_EXECUTABLE} -query QT_INSTALL_QML + OUTPUT_VARIABLE INSTALL_QMLDIR + OUTPUT_STRIP_TRAILING_WHITESPACE +) + # find_package(LingmoUI REQUIRED) find_package(KF5KIO) @@ -28,47 +41,9 @@ add_executable(lingmo-filemanager application.cpp window.cpp dbusinterface.cpp - - draganddrop/declarativedroparea.cpp - draganddrop/declarativedragdropevent.cpp - draganddrop/declarativemimedata.cpp - - model/foldermodel.cpp - model/placesmodel.cpp - model/placesitem.cpp - model/pathbarmodel.cpp - model/dirlister.cpp - model/positioner.cpp - - cio/cfilejob.cpp - cio/cfilesizejob.cpp - - dialogs/createfolderdialog.cpp - dialogs/filepropertiesdialog.cpp - dialogs/openwithdialog.cpp - widgets/rubberband.cpp - widgets/itemviewadapter.cpp - - desktop/desktop.cpp - desktop/desktopview.cpp - desktop/desktopsettings.cpp - desktop/dockdbusinterface.cpp - - helper/datehelper.cpp - helper/pathhistory.cpp - helper/fm.cpp - helper/shortcut.cpp - helper/filelauncher.cpp - helper/keyboardsearchmanager.cpp - - mimetype/mimeappmanager.cpp - mimetype/xdgdesktopfile.cpp - thumbnailer/thumbnailprovider.cpp thumbnailer/thumbnailcache.cpp - - desktopiconprovider.cpp - + runtime/runtime.cpp qml.qrc ${DBUS_SOURCES} @@ -90,6 +65,9 @@ target_link_libraries(lingmo-filemanager # LingmoUI ) +add_subdirectory(filemanager) +add_subdirectory(dragdrop) + file(GLOB TS_FILES translations/*.ts) foreach(filepath ${TS_FILES}) string(REPLACE "${CMAKE_CURRENT_SOURCE_DIR}/" "" filename ${filepath}) diff --git a/README.md b/README.md index fd71b1a..ab2bc8d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Lingmo File Manager +# File Manager Lingmo File Manager, simple to use, beautiful, and retain the classic PC interactive design. diff --git a/application.cpp b/application.cpp index 73fa53e..8b75336 100644 --- a/application.cpp +++ b/application.cpp @@ -19,10 +19,10 @@ #include "application.h" #include "dbusinterface.h" -#include "window.h" -#include "desktop/desktop.h" +#include "window.h" #include "thumbnailer/thumbnailprovider.h" #include "filemanageradaptor.h" +#include "runtime/runtime.h" #include #include @@ -143,22 +143,21 @@ bool Application::parseCommandLineArgs() parser.addPositionalArgument("files", "Files", "[FILE1, FILE2,...]"); - QCommandLineOption desktopOption(QStringList() << "d" << "desktop" << "Desktop Mode"); - parser.addOption(desktopOption); - QCommandLineOption emptyTrashOption(QStringList() << "e" << "empty-trash" << "Empty Trash"); parser.addOption(emptyTrashOption); + QCommandLineOption runtimeOption(QStringList() << "r" << "runtime" << "Run"); + parser.addOption(runtimeOption); + QCommandLineOption moveToTrashOption(QStringList() << "mtr" << "move-to-trash" << "Move To Trash"); parser.addOption(moveToTrashOption); parser.process(arguments()); if (m_instance) { - QPixmapCache::setCacheLimit(2048); - - if (parser.isSet(desktopOption)) { - Desktop desktop; + QPixmapCache::setCacheLimit(2048); + if (parser.isSet(runtimeOption)) { + RunTime runtime; } else { openFiles(formatUriList(parser.positionalArguments())); } diff --git a/debian/changelog b/debian/changelog index 51cae06..41e5d80 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,72 @@ +lingmo-filemanager (2.0.0+lingmo3build1) helium; urgency=medium + + [Lingmo OS Team] + * Uniform version number. + + -- Lingmo OS Team Sun, 27 Jul 2025 16:48:19 +0800 + +lingmo-filemanager (1.8.0) helium; urgency=medium + + [Lingmo OS Team] + * Added desktop icon sorting function + * Added the function of selecting all existing programs to open files + * Fixed the issue that desktop icons cannot be resized via the right-click menu + * Fixed the issue that the wallpaper setting option can be set via the right-click menu + + -- Lingmo OS Team Sat, 06 Jun 2025 00:12:00 +0800 + +lingmo-filemanager (1.7.8+lingmo3build1) helium; urgency=medium + + [Lingmo OS Team] + * Fix desktop right click menu translation. + + -- Lingmo OS Team Sat, 03 May 2025 22:50:00 +0800 + +lingmo-filemanager (1.7.1-1~lingmo3) helium; urgency=medium + + [Lingmo OS Team] + * Add Runtime. + + -- Lingmo OS Team Sat, 29 Mar 2025 23:30:00 +0800 + +lingmo-filemanager (1.7.0-1~lingmo3) helium; urgency=medium + + * Update. + + -- Lingmo OS Team Mon, 10 Feb 2025 00:00:00 +0800 + +lingmo-filemanager (1.5.3-1~lingmo3) helium; urgency=high + + * Add key delete forever function. + + -- Lingmo OS Team Thu, 30 Jan 2025 23:00:00 +0800 + +lingmo-filemanager (1.5.0-1~lingmo3) helium; urgency=high + + * Add key delete forever function. + + -- Lingmo OS Team Thu, 30 Jan 2025 19:00:00 +0800 + +lingmo-filemanager (1.4) helium; urgency=high + + * Add icon size menu + + -- Lingmo OS Team Sun, 26 Jan 2025 19:00:00 +0800 + +lingmo-filemanager (1.3) helium; urgency=high + + * Initial release (LingmoOS) + + -- Lingmo OS Team Fri, 17 Jan 2025 23:00:00 +0800 + +lingmo-filemanager (1.2) unstable; urgency=high + + * Initial release (LingmoOS) + + -- Lingmo OS Team Fri, 29 Nov 2024 20:00:00 +0800 + lingmo-filemanager (0.8) UNRELEASED; urgency=high * Initial release (LingmoOS) - -- LingmoOS Packaging Team Sat, 29 Jan 2022 03:21:19 +0800 \ No newline at end of file + -- LingmoOS Packaging Team Sat, 29 Jan 2022 03:21:19 +0800 diff --git a/debian/compat b/debian/compat index ec63514..48082f7 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -9 +12 diff --git a/debian/control b/debian/control index 32d49aa..54e166d 100644 --- a/debian/control +++ b/debian/control @@ -1,7 +1,7 @@ Source: lingmo-filemanager Section: devel Priority: optional -Maintainer: LingmoOS +Maintainer: Lingmo OS Team Build-Depends: cmake, debhelper (>= 9), extra-cmake-modules, @@ -16,7 +16,7 @@ Build-Depends: cmake, qttools5-dev, qttools5-dev-tools Standards-Version: 4.5.0 -Homepage: https://lingmoos.com +Homepage: https://lingmo.org Package: lingmo-filemanager Architecture: any @@ -33,3 +33,19 @@ Depends: qml-module-qtquick-controls2, ${misc:Depends}, ${shlibs:Depends} Description: LingmoOS File Manager + +Package: liblingmo-filemanager +Architecture: any +Depends: qml-module-qtquick-controls2, + qml-module-qtquick2, + qml-module-qtquick-layouts, + qml-module-qt-labs-platform, + qml-module-qt-labs-settings, + qml-module-qtqml, + qml-module-qtquick-window2, + qml-module-qtquick-shapes, + qml-module-qtquick-dialogs, + qml-module-qtgraphicaleffects, + ${misc:Depends}, + ${shlibs:Depends} +Description: LingmoOS File Manager Lib diff --git a/debian/copyright b/debian/copyright index 27ad177..7863836 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,3 +1,3 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: lingmo-filemanager -Source: lingmoos.com +Source: lingmo.org diff --git a/debian/liblingmo-filemanager.install b/debian/liblingmo-filemanager.install new file mode 100644 index 0000000..0d5487b --- /dev/null +++ b/debian/liblingmo-filemanager.install @@ -0,0 +1 @@ +usr/lib \ No newline at end of file diff --git a/debian/lingmo-filemanager.install b/debian/lingmo-filemanager.install new file mode 100644 index 0000000..9ab23a6 --- /dev/null +++ b/debian/lingmo-filemanager.install @@ -0,0 +1,2 @@ +usr/bin +usr/share \ No newline at end of file diff --git a/desktop/desktop.cpp b/desktop/desktop.cpp deleted file mode 100644 index 623153e..0000000 --- a/desktop/desktop.cpp +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Copyright (C) 2021 LingmoOS Team. - * - * Author: Reion Wong - * - * 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 - * 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 program. If not, see . - */ - -#include "desktop.h" -#include -#include - -#include -#include - -Desktop::Desktop(QObject *parent) - : QObject(parent) -{ - for (QScreen *screen : QGuiApplication::screens()) { - screenAdded(screen); - } - - connect(qApp, &QGuiApplication::screenAdded, this, &Desktop::screenAdded); - connect(qApp, &QGuiApplication::screenRemoved, this, &Desktop::screenRemoved); -} - -void Desktop::screenAdded(QScreen *screen) -{ - if (!m_list.contains(screen)) { - DesktopView *view = new DesktopView(screen); - view->show(); - m_list.insert(screen, view); - } -} - -void Desktop::screenRemoved(QScreen *screen) -{ - if (m_list.contains(screen)) { - DesktopView *view = m_list.find(screen).value(); - view->setVisible(false); - view->deleteLater(); - m_list.remove(screen); - } -} diff --git a/desktop/desktopsettings.cpp b/desktop/desktopsettings.cpp deleted file mode 100644 index 5412e6d..0000000 --- a/desktop/desktopsettings.cpp +++ /dev/null @@ -1,91 +0,0 @@ -/* - * Copyright (C) 2021 LingmoOS Team. - * - * Author: revenmartin - * - * 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 - * 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 program. If not, see . - */ - -#include "desktopsettings.h" - -#include -#include - -DesktopSettings::DesktopSettings(QObject *parent) - : QObject(parent) - , m_interface("com.lingmo.Settings", - "/Theme", "com.lingmo.Theme", - QDBusConnection::sessionBus(), this) -{ - QDBusServiceWatcher *watcher = new QDBusServiceWatcher(this); - watcher->setConnection(QDBusConnection::sessionBus()); - watcher->addWatchedService("com.lingmo.Settings"); - connect(watcher, &QDBusServiceWatcher::serviceRegistered, this, &DesktopSettings::init); - - init(); -} - -QString DesktopSettings::wallpaper() const -{ - return m_wallpaper; -} - -bool DesktopSettings::backgroundVisible() const -{ - return m_interface.property("backgroundVisible").toBool(); -} - -bool DesktopSettings::dimsWallpaper() const -{ - return m_interface.property("darkModeDimsWallpaer").toBool(); -} - -int DesktopSettings::backgroundType() const -{ - return m_interface.property("backgroundType").toInt(); -} - -QString DesktopSettings::backgroundColor() const -{ - return m_interface.property("backgroundColor").toString(); -} - -void DesktopSettings::launch(const QString &command, const QStringList &args) -{ - QProcess process; - process.setProgram(command); - process.setArguments(args); - process.startDetached(); -} - -void DesktopSettings::init() -{ - if (m_interface.isValid()) { - connect(&m_interface, SIGNAL(wallpaperChanged(QString)), this, SLOT(onWallpaperChanged(QString))); - connect(&m_interface, SIGNAL(darkModeDimsWallpaerChanged()), this, SIGNAL(dimsWallpaperChanged())); - connect(&m_interface, SIGNAL(backgroundTypeChanged()), this, SIGNAL(backgroundTypeChanged())); - connect(&m_interface, SIGNAL(backgroundColorChanged()), this, SIGNAL(backgroundColorChanged())); - connect(&m_interface, SIGNAL(backgroundVisibleChanged()), this, SIGNAL(backgroundVisibleChanged())); - m_wallpaper = m_interface.property("wallpaper").toString(); - emit wallpaperChanged(); - } -} - -void DesktopSettings::onWallpaperChanged(QString path) -{ - if (path != m_wallpaper) { - m_wallpaper = path; - emit wallpaperChanged(); - } -} diff --git a/desktop/desktopsettings.h b/desktop/desktopsettings.h deleted file mode 100644 index 809f6ea..0000000 --- a/desktop/desktopsettings.h +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Copyright (C) 2021 LingmoOS Team. - * - * Author: revenmartin - * - * 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 - * 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 program. If not, see . - */ - -#ifndef SETTINGS_H -#define SETTINGS_H - -#include -#include - -class DesktopSettings : public QObject -{ - Q_OBJECT - Q_PROPERTY(QString wallpaper READ wallpaper NOTIFY wallpaperChanged) - Q_PROPERTY(bool dimsWallpaper READ dimsWallpaper NOTIFY dimsWallpaperChanged) - Q_PROPERTY(bool backgroundVisible READ backgroundVisible NOTIFY backgroundVisibleChanged) - Q_PROPERTY(int backgroundType READ backgroundType NOTIFY backgroundTypeChanged) - Q_PROPERTY(QString backgroundColor READ backgroundColor NOTIFY backgroundColorChanged) - -public: - explicit DesktopSettings(QObject *parent = nullptr); - - QString wallpaper() const; - bool dimsWallpaper() const; - bool backgroundVisible() const; - int backgroundType() const; - QString backgroundColor() const; - - Q_INVOKABLE void launch(const QString &command, const QStringList &args); - -signals: - void wallpaperChanged(); - void dimsWallpaperChanged(); - void backgroundColorChanged(); - void backgroundTypeChanged(); - void backgroundVisibleChanged(); - -private slots: - void init(); - void onWallpaperChanged(QString); - -private: - QDBusInterface m_interface; - QString m_wallpaper; -}; - -#endif // SETTINGS_H diff --git a/desktop/desktopview.cpp b/desktop/desktopview.cpp deleted file mode 100644 index e9e7762..0000000 --- a/desktop/desktopview.cpp +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Copyright (C) 2021 LingmoOS Team. - * - * Author: revenmartin - * - * 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 - * 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 program. If not, see . - */ - -#include "desktopview.h" -#include "dockdbusinterface.h" -#include "thumbnailer/thumbnailprovider.h" - -#include -#include - -#include -#include -#include - -#include - -DesktopView::DesktopView(QScreen *screen, QQuickView *parent) - : QQuickView(parent) - , m_screen(screen) -{ - m_screenRect = m_screen->geometry(); - this->setFlag(Qt::FramelessWindowHint); - this->setColor(QColor(Qt::transparent)); - KWindowSystem::setType(winId(), NET::Desktop); - KWindowSystem::setState(winId(), NET::KeepBelow); - - engine()->rootContext()->setContextProperty("desktopView", this); - engine()->rootContext()->setContextProperty("Dock", DockDBusInterface::self()); - QWindow::fromWinId(winId())->setOpacity(0.99); - engine()->addImageProvider("thumbnailer", new ThumbnailProvider()); - - setTitle(tr("Desktop")); - setScreen(m_screen); - setResizeMode(QQuickView::SizeRootObjectToView); - - onGeometryChanged(); - onPrimaryScreenChanged(QGuiApplication::primaryScreen()); - - // 主屏改变 - connect(qGuiApp, &QGuiApplication::primaryScreenChanged, this, &DesktopView::onPrimaryScreenChanged); - - connect(m_screen, &QScreen::virtualGeometryChanged, this, &DesktopView::onGeometryChanged); - connect(m_screen, &QScreen::geometryChanged, this, &DesktopView::onGeometryChanged); -} - -QRect DesktopView::screenRect() -{ - return m_screenRect; -} - -void DesktopView::onPrimaryScreenChanged(QScreen *screen) -{ - bool isPrimaryScreen = m_screen->name() == screen->name(); - - onGeometryChanged(); - - setSource(isPrimaryScreen ? QStringLiteral("qrc:/qml/Desktop/Main.qml") - : QStringLiteral("qrc:/qml/Desktop/Wallpaper.qml")); -} - -void DesktopView::onGeometryChanged() -{ - m_screenRect = m_screen->geometry().adjusted(0, 0, 1, 1); - setGeometry(m_screenRect); - emit screenRectChanged(); -} diff --git a/desktop/dockdbusinterface.cpp b/desktop/dockdbusinterface.cpp deleted file mode 100644 index 3b9dc01..0000000 --- a/desktop/dockdbusinterface.cpp +++ /dev/null @@ -1,102 +0,0 @@ -/* - * Copyright (C) 2021 LingmoOS Team. - * - * Author: Reion Wong - * - * 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 - * 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 program. If not, see . - */ - -#include "dockdbusinterface.h" -#include -#include - -static DockDBusInterface *DOCKDBUS_SELF = nullptr; - -DockDBusInterface *DockDBusInterface::self() -{ - if (!DOCKDBUS_SELF) - DOCKDBUS_SELF = new DockDBusInterface; - - return DOCKDBUS_SELF; -} - -DockDBusInterface::DockDBusInterface(QObject *parent) - : QObject(parent) - , m_dockInterface("com.lingmo.Dock", - "/Dock", - "com.lingmo.Dock", QDBusConnection::sessionBus()) - , m_leftMargin(0) - , m_rightMargin(0) - , m_bottomMargin(0) -{ - if (m_dockInterface.isValid()) { - updateMargins(); - connect(&m_dockInterface, SIGNAL(primaryGeometryChanged()), this, SLOT(updateMargins())); - connect(&m_dockInterface, SIGNAL(directionChanged()), this, SLOT(updateMargins())); - connect(&m_dockInterface, SIGNAL(visibilityChanged()), this, SLOT(updateMargins())); - } else { - QDBusServiceWatcher *watcher = new QDBusServiceWatcher("com.lingmo.Dock", - QDBusConnection::sessionBus(), - QDBusServiceWatcher::WatchForUnregistration, - this); - connect(watcher, &QDBusServiceWatcher::serviceUnregistered, this, [=] { - updateMargins(); - connect(&m_dockInterface, SIGNAL(primaryGeometryChanged()), this, SLOT(updateMargins())); - connect(&m_dockInterface, SIGNAL(directionChanged()), this, SLOT(updateMargins())); - connect(&m_dockInterface, SIGNAL(visibilityChanged()), this, SLOT(updateMargins())); - }); - } -} - -int DockDBusInterface::leftMargin() const -{ - return m_leftMargin; -} - -int DockDBusInterface::rightMargin() const -{ - return m_rightMargin; -} - -int DockDBusInterface::bottomMargin() const -{ - return m_bottomMargin; -} - -void DockDBusInterface::updateMargins() -{ - QRect dockGeometry = m_dockInterface.property("primaryGeometry").toRect(); - int dockDirection = m_dockInterface.property("direction").toInt(); - int visibility = m_dockInterface.property("visibility").toInt(); - - m_leftMargin = 0; - m_rightMargin = 0; - m_bottomMargin = 0; - - // AlwaysHide - if (visibility == 1) { - emit marginsChanged(); - return; - } - - if (dockDirection == 0) { - m_leftMargin = dockGeometry.width(); - } else if (dockDirection == 1) { - m_bottomMargin = dockGeometry.height(); - } else if (dockDirection == 2) { - m_rightMargin = dockGeometry.width(); - } - - emit marginsChanged(); -} diff --git a/desktop/dockdbusinterface.h b/desktop/dockdbusinterface.h deleted file mode 100644 index 3ce5ab8..0000000 --- a/desktop/dockdbusinterface.h +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Copyright (C) 2021 LingmoOS Team. - * - * Author: Reion Wong - * - * 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 - * 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 program. If not, see . - */ - -#ifndef DOCKDBUSINTERFACE_H -#define DOCKDBUSINTERFACE_H - -#include -#include - -class DockDBusInterface : public QObject -{ - Q_OBJECT - Q_PROPERTY(int leftMargin READ leftMargin NOTIFY marginsChanged) - Q_PROPERTY(int rightMargin READ rightMargin NOTIFY marginsChanged) - Q_PROPERTY(int bottomMargin READ bottomMargin NOTIFY marginsChanged) - -public: - static DockDBusInterface *self(); - explicit DockDBusInterface(QObject *parent = nullptr); - - int leftMargin() const; - int rightMargin() const; - int bottomMargin() const; - -signals: - void marginsChanged(); - -private slots: - void updateMargins(); - -private: - QDBusInterface m_dockInterface; - - int m_leftMargin; - int m_rightMargin; - int m_bottomMargin; -}; - -#endif // DOCKDBUSINTERFACE_H diff --git a/dragdrop/CMakeLists.txt b/dragdrop/CMakeLists.txt new file mode 100644 index 0000000..f160287 --- /dev/null +++ b/dragdrop/CMakeLists.txt @@ -0,0 +1,20 @@ +set(SCREEN_SRCS + draganddrop/declarativedroparea.cpp + draganddrop/declarativedragdropevent.cpp + draganddrop/declarativemimedata.cpp + plugin.cpp +) + +find_package(Qt5 COMPONENTS Core DBus Quick LinguistTools REQUIRED) + +add_library(lingmodragdrop_qmlplugins SHARED ${SCREEN_SRCS}) + +target_link_libraries (lingmodragdrop_qmlplugins + Qt5::Core + Qt5::Quick + Qt5::Gui + Qt5::DBus +) + +install(TARGETS lingmodragdrop_qmlplugins DESTINATION ${INSTALL_QMLDIR}/Lingmo/DragDrop) +install(FILES qmldir DESTINATION ${INSTALL_QMLDIR}/Lingmo/DragDrop) \ No newline at end of file diff --git a/draganddrop/declarativedragdropevent.cpp b/dragdrop/draganddrop/declarativedragdropevent.cpp similarity index 100% rename from draganddrop/declarativedragdropevent.cpp rename to dragdrop/draganddrop/declarativedragdropevent.cpp diff --git a/draganddrop/declarativedragdropevent.h b/dragdrop/draganddrop/declarativedragdropevent.h similarity index 100% rename from draganddrop/declarativedragdropevent.h rename to dragdrop/draganddrop/declarativedragdropevent.h diff --git a/draganddrop/declarativedroparea.cpp b/dragdrop/draganddrop/declarativedroparea.cpp similarity index 100% rename from draganddrop/declarativedroparea.cpp rename to dragdrop/draganddrop/declarativedroparea.cpp diff --git a/draganddrop/declarativedroparea.h b/dragdrop/draganddrop/declarativedroparea.h similarity index 100% rename from draganddrop/declarativedroparea.h rename to dragdrop/draganddrop/declarativedroparea.h diff --git a/draganddrop/declarativemimedata.cpp b/dragdrop/draganddrop/declarativemimedata.cpp similarity index 100% rename from draganddrop/declarativemimedata.cpp rename to dragdrop/draganddrop/declarativemimedata.cpp diff --git a/draganddrop/declarativemimedata.h b/dragdrop/draganddrop/declarativemimedata.h similarity index 100% rename from draganddrop/declarativemimedata.h rename to dragdrop/draganddrop/declarativemimedata.h diff --git a/dragdrop/plugin.cpp b/dragdrop/plugin.cpp new file mode 100644 index 0000000..14c1c51 --- /dev/null +++ b/dragdrop/plugin.cpp @@ -0,0 +1,26 @@ +#include +#include + +#include "draganddrop/declarativedragdropevent.h" +#include "draganddrop/declarativedroparea.h" +#include "draganddrop/declarativemimedata.h" + +class QmlPlugins : public QQmlExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") + +public: + void registerTypes(const char * uri) override { + #if QT_VERSION < QT_VERSION_CHECK(5, 14, 0) + qmlRegisterType(); + #else + qmlRegisterAnonymousType(uri, 1); + #endif + qmlRegisterType(uri, 1, 0, "DropArea"); + qmlRegisterUncreatableType(uri, 1, 0, "MimeData", QStringLiteral("MimeData cannot be created from QML.")); + qmlRegisterUncreatableType(uri, 2, 0, "DragDropEvent", QStringLiteral("DragDropEvent cannot be created from QML.")); + } +}; + +#include "plugin.moc" \ No newline at end of file diff --git a/dragdrop/qmldir b/dragdrop/qmldir new file mode 100644 index 0000000..50a9ce9 --- /dev/null +++ b/dragdrop/qmldir @@ -0,0 +1,3 @@ +module Lingmo.DragDrop + +plugin lingmodragdrop_qmlplugins \ No newline at end of file diff --git a/filemanager/CMakeLists.txt b/filemanager/CMakeLists.txt new file mode 100644 index 0000000..7ab77b9 --- /dev/null +++ b/filemanager/CMakeLists.txt @@ -0,0 +1,51 @@ +set(SCREEN_SRCS + window.cpp + desktopiconprovider.cpp + model/foldermodel.cpp + model/placesmodel.cpp + model/placesitem.cpp + model/pathbarmodel.cpp + model/dirlister.cpp + model/positioner.cpp + widgets/rubberband.cpp + widgets/itemviewadapter.cpp + helper/datehelper.cpp + helper/pathhistory.cpp + helper/fm.cpp + helper/shortcut.cpp + helper/filelauncher.cpp + helper/keyboardsearchmanager.cpp + mimetype/mimeappmanager.cpp + mimetype/xdgdesktopfile.cpp + dialogs/createfolderdialog.cpp + dialogs/filepropertiesdialog.cpp + dialogs/openwithdialog.cpp + dialogs/deletedialog.cpp + cio/cfilejob.cpp + cio/cfilesizejob.cpp + plugin.cpp +) + +find_package(Qt5 COMPONENTS Core DBus Quick LinguistTools REQUIRED) +find_package(KF5KIO) +find_package(KF5Solid) +find_package(KF5WindowSystem) +find_package(KF5Config) + +add_library(lingmofilemanager_qmlplugins SHARED ${SCREEN_SRCS}) + +target_link_libraries (lingmofilemanager_qmlplugins + Qt5::Core + Qt5::Quick + Qt5::Gui + Qt5::DBus + KF5::KIOCore + KF5::KIOFileWidgets + KF5::KIOWidgets + KF5::Solid + KF5::WindowSystem + KF5::ConfigCore +) + +install(TARGETS lingmofilemanager_qmlplugins DESTINATION ${INSTALL_QMLDIR}/Lingmo/FileManager) +install(FILES qmldir DESTINATION ${INSTALL_QMLDIR}/Lingmo/FileManager) diff --git a/cio/cfilejob.cpp b/filemanager/cio/cfilejob.cpp similarity index 100% rename from cio/cfilejob.cpp rename to filemanager/cio/cfilejob.cpp diff --git a/cio/cfilejob.h b/filemanager/cio/cfilejob.h similarity index 100% rename from cio/cfilejob.h rename to filemanager/cio/cfilejob.h diff --git a/cio/cfilesizejob.cpp b/filemanager/cio/cfilesizejob.cpp similarity index 100% rename from cio/cfilesizejob.cpp rename to filemanager/cio/cfilesizejob.cpp diff --git a/cio/cfilesizejob.h b/filemanager/cio/cfilesizejob.h similarity index 100% rename from cio/cfilesizejob.h rename to filemanager/cio/cfilesizejob.h diff --git a/filemanager/desktopiconprovider.cpp b/filemanager/desktopiconprovider.cpp new file mode 100644 index 0000000..1e6db4b --- /dev/null +++ b/filemanager/desktopiconprovider.cpp @@ -0,0 +1,49 @@ +/* + * Copyright (C) 2021 LingmoOS Team. + * + * Author: revenmartin + * + * 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 + * 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 program. If not, see . + */ + +#include "desktopiconprovider.h" +#include + +DesktopIconProvider::DesktopIconProvider() + : QQuickImageProvider(QQuickImageProvider::Pixmap) +{ + +} + +QPixmap DesktopIconProvider::requestPixmap(const QString &id, QSize *realSize, + const QSize &requestedSize) +{ + QSize size(requestedSize); + if (size.width() < 1) + size.setWidth(1); + if (size.height() < 1) + size.setHeight(1); + + if (realSize) + *realSize = size; + + if (id.startsWith(QLatin1Char('/'))) + return QPixmap(id).scaled(size); + + QIcon icon = QIcon::fromTheme(id); + if (icon.isNull()) + icon = QIcon::fromTheme(QLatin1String("application-x-desktop")); + + return icon.pixmap(size); +} diff --git a/desktop/desktopview.h b/filemanager/desktopiconprovider.h similarity index 57% rename from desktop/desktopview.h rename to filemanager/desktopiconprovider.h index 1dd836d..f8edcc5 100644 --- a/desktop/desktopview.h +++ b/filemanager/desktopiconprovider.h @@ -17,33 +17,17 @@ * along with this program. If not, see . */ -#ifndef DESKTOPVIEW_H -#define DESKTOPVIEW_H +#ifndef DESKTOPICONPROVIDER_H +#define DESKTOPICONPROVIDER_H -#include -#include +#include -class Desktop; -class DesktopView : public QQuickView +class DesktopIconProvider : public QQuickImageProvider { - Q_OBJECT - Q_PROPERTY(QRect screenRect READ screenRect NOTIFY screenRectChanged) - public: - explicit DesktopView(QScreen *screen = nullptr, QQuickView *parent = nullptr); - - QRect screenRect(); - -signals: - void screenRectChanged(); - -private slots: - void onPrimaryScreenChanged(QScreen *screen); - void onGeometryChanged(); + DesktopIconProvider(); -private: - QScreen *m_screen; - QRect m_screenRect; + QPixmap requestPixmap(const QString &id, QSize *realSize, const QSize &requestedSize); }; -#endif // DESKTOPVIEW_H +#endif // DESKTOPICONPROVIDER_H diff --git a/dialogs/createfolderdialog.cpp b/filemanager/dialogs/createfolderdialog.cpp similarity index 100% rename from dialogs/createfolderdialog.cpp rename to filemanager/dialogs/createfolderdialog.cpp diff --git a/dialogs/createfolderdialog.h b/filemanager/dialogs/createfolderdialog.h similarity index 100% rename from dialogs/createfolderdialog.h rename to filemanager/dialogs/createfolderdialog.h diff --git a/filemanager/dialogs/deletedialog.cpp b/filemanager/dialogs/deletedialog.cpp new file mode 100644 index 0000000..ece2eef --- /dev/null +++ b/filemanager/dialogs/deletedialog.cpp @@ -0,0 +1,51 @@ +#include "deletedialog.h" + +#include +#include +#include +#include +#include + +DeleteDialog::DeleteDialog(const QList &urls, QWidget *parent) + : QDialog(parent) + , m_urls(urls) +{ + setWindowTitle(tr("Delete Files")); + setMinimumWidth(400); + + QVBoxLayout *layout = new QVBoxLayout(this); + + QString text; + if (urls.count() == 1) { + text = tr("Are you sure you want to permanently delete \"%1\"?") + .arg(urls.first().fileName()); + } else { + text = tr("Are you sure you want to permanently delete %1 files?") + .arg(urls.count()); + } + + m_label = new QLabel(text); + m_label->setWordWrap(true); + layout->addWidget(m_label); + + QHBoxLayout *btnLayout = new QHBoxLayout; + layout->addLayout(btnLayout); + + m_cancelButton = new QPushButton(tr("Cancel")); + m_deleteButton = new QPushButton(tr("Delete")); + // m_deleteButton->setStyleSheet("QPushButton { color: red; }"); + + btnLayout->addWidget(m_cancelButton); + btnLayout->addWidget(m_deleteButton); + + connect(m_cancelButton, &QPushButton::clicked, this, &DeleteDialog::reject); + connect(m_deleteButton, &QPushButton::clicked, this, &DeleteDialog::accept); +} + +void DeleteDialog::accept() +{ + KIO::DeleteJob *job = KIO::del(m_urls); + job->start(); + + QDialog::accept(); +} \ No newline at end of file diff --git a/filemanager/dialogs/deletedialog.h b/filemanager/dialogs/deletedialog.h new file mode 100644 index 0000000..0b49519 --- /dev/null +++ b/filemanager/dialogs/deletedialog.h @@ -0,0 +1,27 @@ +#ifndef DELETEDIALOG_H +#define DELETEDIALOG_H + +#include +#include + +class QLabel; +class QPushButton; + +class DeleteDialog : public QDialog +{ + Q_OBJECT + +public: + explicit DeleteDialog(const QList &urls, QWidget *parent = nullptr); + +private slots: + void accept() override; + +private: + QList m_urls; + QLabel *m_label; + QPushButton *m_deleteButton; + QPushButton *m_cancelButton; +}; + +#endif // DELETEDIALOG_H \ No newline at end of file diff --git a/dialogs/filepropertiesdialog.cpp b/filemanager/dialogs/filepropertiesdialog.cpp similarity index 100% rename from dialogs/filepropertiesdialog.cpp rename to filemanager/dialogs/filepropertiesdialog.cpp diff --git a/dialogs/filepropertiesdialog.h b/filemanager/dialogs/filepropertiesdialog.h similarity index 100% rename from dialogs/filepropertiesdialog.h rename to filemanager/dialogs/filepropertiesdialog.h diff --git a/dialogs/openwithdialog.cpp b/filemanager/dialogs/openwithdialog.cpp similarity index 100% rename from dialogs/openwithdialog.cpp rename to filemanager/dialogs/openwithdialog.cpp diff --git a/dialogs/openwithdialog.h b/filemanager/dialogs/openwithdialog.h similarity index 100% rename from dialogs/openwithdialog.h rename to filemanager/dialogs/openwithdialog.h diff --git a/helper/datehelper.cpp b/filemanager/helper/datehelper.cpp similarity index 100% rename from helper/datehelper.cpp rename to filemanager/helper/datehelper.cpp diff --git a/helper/datehelper.h b/filemanager/helper/datehelper.h similarity index 100% rename from helper/datehelper.h rename to filemanager/helper/datehelper.h diff --git a/helper/filelauncher.cpp b/filemanager/helper/filelauncher.cpp similarity index 100% rename from helper/filelauncher.cpp rename to filemanager/helper/filelauncher.cpp diff --git a/helper/filelauncher.h b/filemanager/helper/filelauncher.h similarity index 100% rename from helper/filelauncher.h rename to filemanager/helper/filelauncher.h diff --git a/helper/fm.cpp b/filemanager/helper/fm.cpp similarity index 100% rename from helper/fm.cpp rename to filemanager/helper/fm.cpp diff --git a/helper/fm.h b/filemanager/helper/fm.h similarity index 100% rename from helper/fm.h rename to filemanager/helper/fm.h diff --git a/helper/keyboardsearchmanager.cpp b/filemanager/helper/keyboardsearchmanager.cpp similarity index 100% rename from helper/keyboardsearchmanager.cpp rename to filemanager/helper/keyboardsearchmanager.cpp diff --git a/helper/keyboardsearchmanager.h b/filemanager/helper/keyboardsearchmanager.h similarity index 100% rename from helper/keyboardsearchmanager.h rename to filemanager/helper/keyboardsearchmanager.h diff --git a/helper/pathhistory.cpp b/filemanager/helper/pathhistory.cpp similarity index 100% rename from helper/pathhistory.cpp rename to filemanager/helper/pathhistory.cpp diff --git a/helper/pathhistory.h b/filemanager/helper/pathhistory.h similarity index 100% rename from helper/pathhistory.h rename to filemanager/helper/pathhistory.h diff --git a/helper/shortcut.cpp b/filemanager/helper/shortcut.cpp similarity index 95% rename from helper/shortcut.cpp rename to filemanager/helper/shortcut.cpp index a6a28be..3e15914 100644 --- a/helper/shortcut.cpp +++ b/filemanager/helper/shortcut.cpp @@ -68,7 +68,11 @@ bool ShortCut::eventFilter(QObject *obj, QEvent *e) } else if (keyEvent->key() == Qt::Key_Backspace) { emit backspace(); } else if (keyEvent->key() == Qt::Key_Delete) { - emit deleteFile(); + if (keyEvent->modifiers() & Qt::ShiftModifier) { + emit deleteFileForever(); + } else { + emit deleteFile(); + } } else if (keyEvent->key() == Qt::Key_F5) { emit refresh(); } else if (keyEvent->key() == Qt::Key_H && keyEvent->modifiers() & Qt::ControlModifier) { diff --git a/helper/shortcut.h b/filemanager/helper/shortcut.h similarity index 98% rename from helper/shortcut.h rename to filemanager/helper/shortcut.h index e8c53ca..9c3ba1a 100644 --- a/helper/shortcut.h +++ b/filemanager/helper/shortcut.h @@ -48,6 +48,7 @@ class ShortCut : public QObject void keyPressed(const QString &text); void close(); void undo(); + void deleteFileForever(); protected: bool eventFilter(QObject *obj, QEvent *e) override; diff --git a/mimetype/mimeappmanager.cpp b/filemanager/mimetype/mimeappmanager.cpp similarity index 90% rename from mimetype/mimeappmanager.cpp rename to filemanager/mimetype/mimeappmanager.cpp index 23d1c96..b8a8486 100644 --- a/mimetype/mimeappmanager.cpp +++ b/filemanager/mimetype/mimeappmanager.cpp @@ -14,7 +14,7 @@ * 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 . + * along with this program. If not, see . */ #include "mimeappmanager.h" @@ -24,7 +24,6 @@ #include #include #include - #include #include #include @@ -85,6 +84,7 @@ void MimeAppManager::initApplications() { m_desktopFiles.clear(); m_desktopObjects.clear(); + m_allApps.clear(); // 清空所有应用程序列表 QMap> mimeAppsSet; @@ -104,6 +104,8 @@ void MimeAppManager::initApplications() m_desktopFiles.append(filePath); m_desktopObjects.insert(filePath, desktopFile); + + // Load terminal QStringList categories = desktopFile.value("Categories").toString().split(";"); if (categories.contains("TerminalEmulator")) { @@ -288,7 +290,7 @@ bool MimeAppManager::setDefaultAppForType(const QString &mimeType, const QString { Q_UNUSED(mimeType); - // ref: https://specifications.freedesktop.org/mime-apps-spec/1.0.1/ar01s03.html +// ref: https://specifications.freedesktop.org/mime-apps-spec/1.0.1/ar01s03.html QString mimeappsFile = mimeAppsListFilePath(); QString desktop = app; @@ -353,6 +355,38 @@ bool MimeAppManager::setDefaultAppForFile(const QString &filePath, const QString return true; } +QStringList MimeAppManager::getAllAppsByFilePath(const QString &filePath) +{ + return getAllAppsByMimeType(QMimeDatabase().mimeTypeForFile(filePath)); +} + +QStringList MimeAppManager::getAllAppsByMimeType(const QMimeType &mimeType) +{ + QStringList allApps; + QList mimeTypeList; + QMimeDatabase mimeDatabase; + + mimeTypeList.append(mimeType); + + while (!mimeTypeList.isEmpty()) { + QList newMimeTypeList; + + for (const auto &entry : m_mimeApps) { + for (const QString &app : entry) { + if (!QFileInfo::exists(app)) { + qWarning() << app << "not exist anymore"; + continue; + } + allApps.append(app); // 将应用程序添加到结果列表中 + } + } + + mimeTypeList = newMimeTypeList; + } + + return allApps; +} + QStringList MimeAppManager::getRecommendedAppsByFilePath(const QString &filePath) { return getRecommendedAppsByMimeType(QMimeDatabase().mimeTypeForFile(filePath)); @@ -443,6 +477,31 @@ QVariantList MimeAppManager::recommendedApps(const QUrl &url) return list; } +QVariantList MimeAppManager::allApps(const QUrl &url) +{ + QVariantList applist; + + if (url.isValid()) { + const QString &filePath = url.toString(); + + for (const QString &path : getAllAppsByFilePath(filePath)) { + XdgDesktopFile desktop(path); + + if (!desktop.valid()) + continue; + + QVariantMap item; + item["icon"] = desktop.value("Icon").toString(); + item["name"] = desktop.localeName(); + item["desktopFile"] = path; + + applist << item; + } + } + + return applist; +} + void MimeAppManager::launchTerminal(const QString &path) { if (m_terminalApps.isEmpty()) @@ -473,4 +532,4 @@ void MimeAppManager::onFileChanged(const QString &path) Q_UNUSED(path); m_updateTimer->start(); -} +} \ No newline at end of file diff --git a/mimetype/mimeappmanager.h b/filemanager/mimetype/mimeappmanager.h similarity index 91% rename from mimetype/mimeappmanager.h rename to filemanager/mimetype/mimeappmanager.h index 0ca8fbb..86ea97f 100644 --- a/mimetype/mimeappmanager.h +++ b/filemanager/mimetype/mimeappmanager.h @@ -49,8 +49,11 @@ class MimeAppManager : public QObject QStringList getRecommendedAppsByFilePath(const QString &filePath); QStringList getRecommendedAppsByMimeType(const QMimeType &mimeType); + QStringList getAllAppsByFilePath(const QString &filePath); + QStringList getAllAppsByMimeType(const QMimeType &mimeType); Q_INVOKABLE QVariantList recommendedApps(const QUrl &url); + Q_INVOKABLE QVariantList allApps(const QUrl &url); Q_INVOKABLE void launchTerminal(const QString &path); @@ -59,6 +62,7 @@ private slots: private: QStringList m_desktopFiles; + QStringList m_allApps; QMap m_mimeApps; QMap m_videoMimeApps; diff --git a/mimetype/xdgdesktopfile.cpp b/filemanager/mimetype/xdgdesktopfile.cpp similarity index 100% rename from mimetype/xdgdesktopfile.cpp rename to filemanager/mimetype/xdgdesktopfile.cpp diff --git a/mimetype/xdgdesktopfile.h b/filemanager/mimetype/xdgdesktopfile.h similarity index 100% rename from mimetype/xdgdesktopfile.h rename to filemanager/mimetype/xdgdesktopfile.h diff --git a/model/dirlister.cpp b/filemanager/model/dirlister.cpp similarity index 100% rename from model/dirlister.cpp rename to filemanager/model/dirlister.cpp diff --git a/model/dirlister.h b/filemanager/model/dirlister.h similarity index 100% rename from model/dirlister.h rename to filemanager/model/dirlister.h diff --git a/model/foldermodel.cpp b/filemanager/model/foldermodel.cpp similarity index 77% rename from model/foldermodel.cpp rename to filemanager/model/foldermodel.cpp index a5f424a..487488b 100644 --- a/model/foldermodel.cpp +++ b/filemanager/model/foldermodel.cpp @@ -6,6 +6,7 @@ * Copyright (C) 2014 by Eike Hein * * Copyright (C) 2021 Reven Martin * * Copyright (C) 2021 Reion Wong * + * Copyright (C) 2025 Lingmo OS Team * * * * 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 * @@ -30,6 +31,7 @@ #include "../dialogs/filepropertiesdialog.h" #include "../dialogs/createfolderdialog.h" #include "../dialogs/openwithdialog.h" +#include "../dialogs/deletedialog.h" #include "../helper/datehelper.h" #include "../helper/filelauncher.h" @@ -57,6 +59,8 @@ #include #include #include +#include +#include // Qt Quick #include @@ -77,6 +81,11 @@ #include #include +// KService +#include +#include + + static bool isDropBetweenSharedViews(const QList &urls, const QUrl &folderUrl) { for (const auto &url : urls) { @@ -112,6 +121,17 @@ FolderModel::FolderModel(QObject *parent) QSettings settings("lingmoos", qApp->applicationName()); m_showHiddenFiles = settings.value("showHiddenFiles", false).toBool(); + QLocale locale; + QString qmFilePath = QString("%1/%2.qm").arg("/usr/share/lingmo-filemanager/translations/").arg(locale.name()); + if (QFile::exists(qmFilePath)) { + QTranslator *translator = new QTranslator(QApplication::instance()); + if (translator->load(qmFilePath)) { + QGuiApplication::installTranslator(translator); + } else { + translator->deleteLater(); + } + } + m_updateNeedSelectTimer->setSingleShot(true); m_updateNeedSelectTimer->setInterval(50); connect(m_updateNeedSelectTimer, &QTimer::timeout, this, &FolderModel::updateNeedSelectUrls); @@ -1257,6 +1277,24 @@ void FolderModel::setWallpaperSelected() iface.call("setWallpaper", url.toLocalFile()); } +void FolderModel::setLoginWallpaperSelected() +{ + if (!m_selectionModel) + return; + + QUrl url = selectedUrls().first(); + + if (!url.isLocalFile()) + return; + + // Define the target directory and new file name + QString srcFilePath = selectedUrls().first().toLocalFile(); + qDebug() << srcFilePath; + QString targetDir = "/etc/system/wallpaper/"; + QString targetFilePath = targetDir + "img.jpg"; + QProcess::startDetached("pkexec", QStringList() << "cp" << srcFilePath << targetFilePath); +} + void FolderModel::openContextMenu(QQuickItem *visualParent, Qt::KeyboardModifiers modifiers) { Q_UNUSED(modifiers); @@ -1270,17 +1308,30 @@ void FolderModel::openContextMenu(QQuickItem *visualParent, Qt::KeyboardModifier // Open folder menu. if (indexes.isEmpty()) { QAction *selectAll = new QAction(tr("Select All"), this); + selectAll->setIcon(QIcon::fromTheme("edit-select-all")); // 添加全选图标 connect(selectAll, &QAction::triggered, this, &FolderModel::selectAll); menu->addAction(m_actionCollection.action("newFolder")); if (!isTrash) { QMenu *newMenu = new QMenu(tr("New Documents")); + newMenu->setIcon(QIcon::fromTheme("document-new")); // 添加新建文档图标 + newMenu->menuAction()->setIconVisibleInMenu(true); newMenu->addAction(m_actionCollection.action("newTextFile")); menu->addMenu(newMenu); } + // 添加刷新菜单 + QAction *refresh = new QAction(tr("Refresh"), this); + refresh->setIcon(QIcon::fromTheme("view-refresh")); + connect(refresh, &QAction::triggered, this, [this]() { + m_dirLister->updateDirectory(m_dirLister->url()); + }); + menu->addSeparator(); + if (m_isDesktop) { + menu->addAction(refresh); // 添加到空白区域的右键菜单 + } menu->addAction(m_actionCollection.action("paste")); menu->addAction(selectAll); if (m_actionCollection.action("terminal")->isVisible()) { @@ -1290,6 +1341,8 @@ void FolderModel::openContextMenu(QQuickItem *visualParent, Qt::KeyboardModifier if (m_isDesktop) { menu->addAction(m_actionCollection.action("changeBackground")); + menu->addAction(m_actionCollection.action("iconSizeMenu")); + menu->addAction(m_actionCollection.action("sortBy")); } menu->addSeparator(); @@ -1298,6 +1351,13 @@ void FolderModel::openContextMenu(QQuickItem *visualParent, Qt::KeyboardModifier menu->addSeparator(); menu->addAction(m_actionCollection.action("emptyTrash")); menu->addAction(m_actionCollection.action("properties")); + + menu->addSeparator(); + menu->addAction(m_actionCollection.action("showHidden")); + + menu->addSeparator(); + menu->addAction(m_actionCollection.action("emptyTrash")); + menu->addAction(m_actionCollection.action("properties")); } else { // Open the items menu. @@ -1320,11 +1380,161 @@ void FolderModel::openContextMenu(QQuickItem *visualParent, Qt::KeyboardModifier menu->addAction(m_actionCollection.action("terminal")); } - menu->addAction(m_actionCollection.action("wallpaper")); + menu->addAction(m_actionCollection.action("setWallpaperMenu")); menu->addSeparator(); menu->addAction(m_actionCollection.action("properties")); } + // 添加压缩/解压缩菜单 + if (!indexes.isEmpty()) { + const KFileItem item = itemForIndex(indexes.first()); + const QString mimetype = item.mimetype(); + + // 支持的压缩文件 MIME 类型列表 + QStringList supportedMimeTypes = { + "application/x-lrzip", + "application/x-cd-image", + "application/x-iso9660-appimage", + "application/x-lzip-compressed-tar", + "application/x-bcpio", + "application/x-lzop", + "application/x-archive", + "application/x-source-rpm", + "application/x-sv4cpio", + "application/x-compress", + "application/x-xar", + "application/x-xz", + "application/x-tar", + "application/x-tarz", + "application/zstd", + "application/x-lzma", + "application/x-lzip", + "application/x-xz-compressed-tar", + "application/gzip", + "application/x-lz4", + "application/x-rpm", + "application/x-bzip-compressed-tar", + "application/x-bzip", + "application/x-deb", + "application/zlib", + "application/vnd.ms-cab-compressed", + "application/x-lzma-compressed-tar", + "application/x-cpio", + "application/x-java-archive", + "application/zip", + "application/x-cpio-compressed", + "application/x-zstd-compressed-tar", + "application/vnd.debian.binary-package", + "application/x-compressed-tar", + "application/x-sv4crc" + }; + + if (supportedMimeTypes.contains(mimetype)) { + // 如果是支持的压缩文件,添加解压菜单 + menu->addSeparator(); + QMenu *extractMenu = menu->addMenu(tr("Extract")); + extractMenu->setIcon(QIcon::fromTheme("archive-extract")); + + // 添加"解压到当前文件夹"选项 + QAction *extractHere = new QAction(tr("Extract Here"), this); + extractHere->setIcon(QIcon::fromTheme("archive-extract")); + connect(extractHere, &QAction::triggered, this, [this]() { + QString archivePath = selectedUrls().first().toLocalFile(); + QString destPath = QFileInfo(archivePath).path(); + QProcess::startDetached("ark", QStringList() << "--batch" << "--autosubfolder" + << "--destination" << destPath << archivePath); + }); + extractMenu->addAction(extractHere); + + // 添加"解压到..."选项 + QAction *extractTo = new QAction(tr("Extract To..."), this); + extractTo->setIcon(QIcon::fromTheme("archive-extract")); + connect(extractTo, &QAction::triggered, this, [this]() { + QString archivePath = selectedUrls().first().toLocalFile(); + QString destPath = QFileDialog::getExistingDirectory(nullptr, tr("Select Destination")); + if (!destPath.isEmpty()) { + QProcess::startDetached("ark", QStringList() << "--batch" << "--autosubfolder" + << "--destination" << destPath << archivePath); + } + }); + extractMenu->addAction(extractTo); + } else { + // 如果不是压缩文件,添加压缩菜单 + menu->addSeparator(); + QMenu *compressMenu = menu->addMenu(tr("Compress")); + compressMenu->setIcon(QIcon::fromTheme("archive-insert")); + + // 添加常用压缩格式 + struct CompressFormat { + QString name; + QString extension; + QString mimeType; + }; + + QAction *zipAction = new QAction(tr("ZIP Archive"), this); + zipAction->setIcon(QIcon::fromTheme("archive-insert")); + connect(zipAction, &QAction::triggered, this, [this]() { + QStringList files; + for (const QUrl &url : selectedUrls()) { + files << url.toLocalFile(); + } + QString baseName = QFileInfo(files.first()).baseName(); + QString archivePath = QFileInfo(files.first()).path() + "/" + baseName + ".zip"; + QProcess::startDetached("ark", QStringList() << "--batch" << "--add-to" << archivePath << files); + }); + compressMenu->addAction(zipAction); + + QAction *sevenZAction = new QAction(tr("7-Zip Archive"), this); + sevenZAction->setIcon(QIcon::fromTheme("archive-insert")); + connect(sevenZAction, &QAction::triggered, this, [this]() { + QStringList files; + for (const QUrl &url : selectedUrls()) { + files << url.toLocalFile(); + } + QString baseName = QFileInfo(files.first()).baseName(); + QString archivePath = QFileInfo(files.first()).path() + "/" + baseName + ".7z"; + QProcess::startDetached("ark", QStringList() << "--batch" << "--add-to" << archivePath << files); + }); + compressMenu->addAction(sevenZAction); + + // TAR 子菜单 + QMenu *tarMenu = new QMenu(tr("TAR Archive"), compressMenu); + tarMenu->setIcon(QIcon::fromTheme("archive-insert")); + + // TAR 压缩选项 + struct TarFormat { + QString name; + QString extension; + QString mimeType; + }; + + QList tarFormats = { + {tr("TAR Archive (gzip)"), "tar.gz", "application/x-compressed-tar"}, + {tr("TAR Archive (bzip2)"), "tar.bz2", "application/x-bzip-compressed-tar"}, + {tr("TAR Archive (xz)"), "tar.xz", "application/x-xz-compressed-tar"}, + {tr("TAR Archive (zstd)"), "tar.zst", "application/x-zstd-compressed-tar"}, + {tr("TAR Archive (uncompressed)"), "tar", "application/x-tar"} + }; + + for (const auto &format : tarFormats) { + QAction *action = new QAction(format.name, this); + action->setIcon(QIcon::fromTheme("archive-insert")); + connect(action, &QAction::triggered, this, [this, format]() { + QStringList files; + for (const QUrl &url : selectedUrls()) { + files << url.toLocalFile(); + } + + QString baseName = QFileInfo(files.first()).baseName(); + QString archivePath = QFileInfo(files.first()).path() + "/" + baseName + "." + format.extension; + + QProcess::startDetached("ark", QStringList() << "--batch" << "--add-to" << archivePath << files); + }); + compressMenu->addAction(action); + } + } + } + QPoint position; if (visualParent) { position = visualParent->mapToGlobal(QPointF(0, visualParent->height())).toPoint(); @@ -1651,10 +1861,8 @@ bool FolderModel::isSupportThumbnails(const QString &mimeType) const /*"application/pdf", "application/rtf", "application/doc", "application/odf", "audio/mpeg", "video/mp4"*/}; - if (supportsMimetypes.contains(mimeType)) - return true; - - return false; + // 直接检查传入的 mimeType 参数 + return supportsMimetypes.contains(mimeType); } bool FolderModel::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const @@ -1762,63 +1970,178 @@ void FolderModel::invalidateFilterIfComplete() void FolderModel::createActions() { QAction *open = new QAction(tr("Open"), this); + open->setIcon(QIcon::fromTheme("document-open")); connect(open, &QAction::triggered, this, &FolderModel::openSelected); QAction *openWith = new QAction(tr("Open with"), this); + openWith->setIcon(QIcon::fromTheme("document-open-with")); connect(openWith, &QAction::triggered, this, &FolderModel::showOpenWithDialog); QAction *cut = new QAction(tr("Cut"), this); + cut->setIcon(QIcon::fromTheme("edit-cut")); connect(cut, &QAction::triggered, this, &FolderModel::cut); QAction *copy = new QAction(tr("Copy"), this); + copy->setIcon(QIcon::fromTheme("edit-copy")); connect(copy, &QAction::triggered, this, &FolderModel::copy); QAction *paste = new QAction(tr("Paste"), this); + paste->setIcon(QIcon::fromTheme("edit-paste")); connect(paste, &QAction::triggered, this, &FolderModel::paste); QAction *newFolder = new QAction(tr("New Folder"), this); + newFolder->setIcon(QIcon::fromTheme("folder-new")); connect(newFolder, &QAction::triggered, this, &FolderModel::newFolder); QMenu *newDocuments = new QMenu(tr("New Documents")); + newDocuments->setIcon(QIcon::fromTheme("document-new")); + newDocuments->menuAction()->setIconVisibleInMenu(true); QAction *newTextFile = new QAction(tr("New Text"), this); + newTextFile->setIcon(QIcon::fromTheme("text-x-generic")); + newTextFile->setIconVisibleInMenu(true); connect(newTextFile, &QAction::triggered, this, &FolderModel::newTextFile); newDocuments->addAction(newTextFile); QAction *trash = new QAction(tr("Move To Trash"), this); + trash->setIcon(QIcon::fromTheme("user-trash")); connect(trash, &QAction::triggered, this, &FolderModel::moveSelectedToTrash); QAction *emptyTrash = new QAction(tr("Empty Trash"), this); + emptyTrash->setIcon(QIcon::fromTheme("trash-empty")); connect(emptyTrash, &QAction::triggered, this, &FolderModel::emptyTrash); QAction *del = new QAction(tr("Delete"), this); + del->setIcon(QIcon::fromTheme("edit-delete")); connect(del, &QAction::triggered, this, &FolderModel::openDeleteDialog); QAction *rename = new QAction(tr("Rename"), this); + rename->setIcon(QIcon::fromTheme("edit-rename")); connect(rename, &QAction::triggered, this, &FolderModel::requestRename); QAction *terminal = new QAction(tr("Open in Terminal"), this); + terminal->setIcon(QIcon::fromTheme("utilities-terminal")); connect(terminal, &QAction::triggered, this, &FolderModel::openInTerminal); - QAction *wallpaper = new QAction(tr("Set as Wallpaper"), this); - connect(wallpaper, &QAction::triggered, this, &FolderModel::setWallpaperSelected); + QMenu *setWallpaperMenu = new QMenu(tr("Set as ...")); + setWallpaperMenu->setIcon(QIcon::fromTheme("preferences-desktop-wallpaper")); + setWallpaperMenu->menuAction()->setIconVisibleInMenu(true); + + QAction *setWallpaper = new QAction(tr("Set as Wallpaper"), this); + setWallpaper->setIcon(QIcon::fromTheme("preferences-desktop-wallpaper")); + setWallpaper->setIconVisibleInMenu(true); + connect(setWallpaper, &QAction::triggered, this, &FolderModel::setWallpaperSelected); + setWallpaperMenu->addAction(setWallpaper); + + QAction *wallpaperLogin = new QAction(tr("Set as Login Screen"), this); + wallpaperLogin->setIcon(QIcon::fromTheme("preferences-desktop-wallpaper")); + wallpaperLogin->setIconVisibleInMenu(true); + connect(wallpaperLogin, &QAction::triggered, this, &FolderModel::setLoginWallpaperSelected); + setWallpaperMenu->addAction(wallpaperLogin); QAction *properties = new QAction(tr("Properties"), this); + properties->setIcon(QIcon::fromTheme("document-properties")); QObject::connect(properties, &QAction::triggered, this, &FolderModel::openPropertiesDialog); QAction *changeBackground = new QAction(tr("Change background"), this); + changeBackground->setIcon(QIcon::fromTheme("preferences-desktop-wallpaper")); QObject::connect(changeBackground, &QAction::triggered, this, &FolderModel::openChangeWallpaperDialog); QAction *restore = new QAction(tr("Restore"), this); + restore->setIcon(QIcon::fromTheme("edit-undo")); QObject::connect(restore, &QAction::triggered, this, &FolderModel::restoreFromTrash); QAction *showHidden = new QAction(tr("Show hidden files"), this); + showHidden->setIcon(QIcon::fromTheme("view-hidden")); QObject::connect(showHidden, &QAction::triggered, this, [=] { setShowHiddenFiles(!m_showHiddenFiles); }); QAction *openInNewWindow = new QAction(tr("Open in new window"), this); + openInNewWindow->setIcon(QIcon::fromTheme("window-new")); QObject::connect(openInNewWindow, &QAction::triggered, this, [=] { this->openInNewWindow(); }); + QMenu *iconSizeMenu = new QMenu(tr("Icon Size")); + iconSizeMenu->setIcon(QIcon::fromTheme(QStringLiteral("transform-scale"))); + iconSizeMenu->menuAction()->setIconVisibleInMenu(true); + + QAction *hugeIcon = new QAction(tr("Huge"), this); + hugeIcon->setIcon(QIcon::fromTheme("zoom-in")); + hugeIcon->setIconVisibleInMenu(true); + + QAction *largeIcon = new QAction(tr("Large"), this); + largeIcon->setIcon(QIcon::fromTheme("zoom-in")); + largeIcon->setIconVisibleInMenu(true); + + QAction *normalIcon = new QAction(tr("Normal"), this); + normalIcon->setIcon(QIcon::fromTheme("zoom-original")); + normalIcon->setIconVisibleInMenu(true); + + QAction *smallIcon = new QAction(tr("Small"), this); + smallIcon->setIcon(QIcon::fromTheme("zoom-out")); + smallIcon->setIconVisibleInMenu(true); + + connect(hugeIcon, &QAction::triggered, this, [=] { + emit changeIconSize(96); // hugeIconSize + }); + connect(largeIcon, &QAction::triggered, this, [=] { + emit changeIconSize(72); // largeIconSize + }); + connect(normalIcon, &QAction::triggered, this, [=] { + emit changeIconSize(64); // normalIconSize + }); + connect(smallIcon, &QAction::triggered, this, [=] { + emit changeIconSize(48); // smallIconSize + }); + + iconSizeMenu->addAction(hugeIcon); + iconSizeMenu->addAction(largeIcon); + iconSizeMenu->addAction(normalIcon); + iconSizeMenu->addAction(smallIcon); + + QMenu *sortBy = new QMenu(tr("Sort by")); + sortBy->setIcon(QIcon::fromTheme(QStringLiteral("view-sort"))); + sortBy->menuAction()->setIconVisibleInMenu(true); + + QAction *sortByName = new QAction(tr("Name"), this); + sortByName->setIconVisibleInMenu(true); + + QAction *sortByType = new QAction(tr("Type"), this); + sortByType->setIconVisibleInMenu(true); + + QAction *sortByModified = new QAction(tr("Date"), this); + sortByModified->setIconVisibleInMenu(true); + + QAction *sortBySize = new QAction(tr("Size"), this); + sortBySize->setIconVisibleInMenu(true); + + connect(sortByName, &QAction::triggered, this, [=] { + emit changeSortMode(0); // 按文件名排序 + }); + + connect(sortByType, &QAction::triggered, this, [=] { + emit changeSortMode(1); // 按文件类型排序 + }); + + connect(sortByModified, &QAction::triggered, this, [=] { + emit changeSortMode(2); // 按修改时间排序 + }); + + connect(sortBySize, &QAction::triggered, this, [=] { + emit changeSortMode(3); // 按文件大小排序 + }); + + sortBy->addAction(sortByName); + sortBy->addAction(sortByType); + sortBy->addAction(sortByModified); + sortBy->addAction(sortBySize); + + QMenu *viewMenu = new QMenu(tr("View")); + viewMenu->addMenu(iconSizeMenu); + viewMenu->addSeparator(); + viewMenu->addAction(showHidden); + + m_actionCollection.addAction(QStringLiteral("iconSizeMenu"), iconSizeMenu->menuAction()); + m_actionCollection.addAction(QStringLiteral("sortBy"), sortBy->menuAction()); m_actionCollection.addAction(QStringLiteral("open"), open); m_actionCollection.addAction(QStringLiteral("openWith"), openWith); m_actionCollection.addAction(QStringLiteral("cut"), cut); @@ -1831,12 +2154,20 @@ void FolderModel::createActions() m_actionCollection.addAction(QStringLiteral("del"), del); m_actionCollection.addAction(QStringLiteral("rename"), rename); m_actionCollection.addAction(QStringLiteral("terminal"), terminal); - m_actionCollection.addAction(QStringLiteral("wallpaper"), wallpaper); + m_actionCollection.addAction(QStringLiteral("setWallpaperMenu"), setWallpaperMenu->menuAction()); + m_actionCollection.addAction(QStringLiteral("setWallpaper"), setWallpaper); + m_actionCollection.addAction(QStringLiteral("wallpaperLogin"), wallpaperLogin); m_actionCollection.addAction(QStringLiteral("properties"), properties); m_actionCollection.addAction(QStringLiteral("changeBackground"), changeBackground); m_actionCollection.addAction(QStringLiteral("restore"), restore); m_actionCollection.addAction(QStringLiteral("showHidden"), showHidden); m_actionCollection.addAction(QStringLiteral("openInNewWindow"), openInNewWindow); + m_actionCollection.addAction(QStringLiteral("viewMenu"), viewMenu->menuAction()); + + // 添加刷新菜单 + QAction *refresh = new QAction(tr("Refresh"), this); + refresh->setIcon(QIcon::fromTheme("view-refresh")); + m_actionCollection.addAction(QStringLiteral("refresh"), refresh); } void FolderModel::updateActions() @@ -1946,8 +2277,20 @@ void FolderModel::updateActions() terminal->setVisible(items.size() == 1 && items.first().isDir() && !isTrash); } - if (QAction *terminal = m_actionCollection.action("wallpaper")) { - terminal->setVisible(items.size() == 1 && + if (QAction *setWallpaperMenuSelected = m_actionCollection.action("setWallpaperMenu")) { + setWallpaperMenuSelected->setVisible(items.size() == 1 && + !isTrash && + supportSetAsWallpaper(items.first().mimetype())); + } + + if (QAction *setWallpaperSelected = m_actionCollection.action("setWallpaper")) { + setWallpaperSelected->setVisible(items.size() == 1 && + !isTrash && + supportSetAsWallpaper(items.first().mimetype())); + } + + if (QAction *setLoginWallpaperSelected = m_actionCollection.action("wallpaperLogin")) { + setLoginWallpaperSelected->setVisible(items.size() == 1 && !isTrash && supportSetAsWallpaper(items.first().mimetype())); } @@ -1965,6 +2308,22 @@ void FolderModel::updateActions() if (QAction *openInNewWindow = m_actionCollection.action("openInNewWindow")) { openInNewWindow->setVisible(hasDir && !isTrash); } + + if (QAction *iconSizeMenu = m_actionCollection.action("iconSizeMenu")) { + iconSizeMenu->setVisible(m_isDesktop); + } + + if (QAction *sortBy = m_actionCollection.action("sortBy")) { + sortBy->setVisible(m_isDesktop); + } + + if (QAction *viewMenu = m_actionCollection.action("viewMenu")) { + viewMenu->setVisible(m_isDesktop); + } + + if (QAction *refresh = m_actionCollection.action("refresh")) { + refresh->setVisible(!isTrash); + } } void FolderModel::addDragImage(QDrag *drag, int x, int y) @@ -2008,3 +2367,13 @@ void FolderModel::addDragImage(QDrag *drag, int x, int y) drag->setPixmap(QPixmap::fromImage(dragImage)); drag->setHotSpot(QPoint(x - offset.x(), y - offset.y())); } + +void FolderModel::keyDeleteForever() +{ + if (!m_selectionModel->hasSelection()) + return; + + DeleteDialog *dlg = new DeleteDialog(selectedUrls()); + dlg->setAttribute(Qt::WA_DeleteOnClose); + dlg->show(); +} diff --git a/model/foldermodel.h b/filemanager/model/foldermodel.h similarity index 96% rename from model/foldermodel.h rename to filemanager/model/foldermodel.h index 351a827..171529b 100644 --- a/model/foldermodel.h +++ b/filemanager/model/foldermodel.h @@ -39,6 +39,10 @@ #include #include #include +#include +#include +#include +#include class QDrag; class CFileSizeJob; @@ -207,6 +211,8 @@ class FolderModel : public QSortFilterProxyModel, public QQmlParserStatus Q_INVOKABLE void drop(QQuickItem *target, QObject *dropEvent, int row); Q_INVOKABLE void setWallpaperSelected(); + Q_INVOKABLE void setLoginWallpaperSelected(); + Q_INVOKABLE void setWallpaperMenuSelected(); Q_INVOKABLE void openContextMenu(QQuickItem *visualParent = nullptr, Qt::KeyboardModifiers modifiers = Qt::NoModifier); Q_INVOKABLE void openPropertiesDialog(); @@ -230,6 +236,8 @@ class FolderModel : public QSortFilterProxyModel, public QQmlParserStatus bool showHiddenFiles() const; void setShowHiddenFiles(bool showHiddenFiles); + Q_INVOKABLE void keyDeleteForever(); + signals: void urlChanged(); void listingCompleted() const; @@ -256,6 +264,8 @@ class FolderModel : public QSortFilterProxyModel, public QQmlParserStatus void move(int x, int y, QList urls); void currentIndexChanged(); + void changeIconSize(int size); + void changeSortMode(int sortmode); private slots: void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected); @@ -328,6 +338,8 @@ private slots: int m_currentIndex; QTimer *m_updateNeedSelectTimer; + + void compressFiles(const QString &archivePath, const QStringList &files); }; #endif // FOLDERMODEL_H diff --git a/model/pathbarmodel.cpp b/filemanager/model/pathbarmodel.cpp similarity index 100% rename from model/pathbarmodel.cpp rename to filemanager/model/pathbarmodel.cpp diff --git a/model/pathbarmodel.h b/filemanager/model/pathbarmodel.h similarity index 100% rename from model/pathbarmodel.h rename to filemanager/model/pathbarmodel.h diff --git a/model/placesitem.cpp b/filemanager/model/placesitem.cpp similarity index 100% rename from model/placesitem.cpp rename to filemanager/model/placesitem.cpp diff --git a/model/placesitem.h b/filemanager/model/placesitem.h similarity index 100% rename from model/placesitem.h rename to filemanager/model/placesitem.h diff --git a/model/placesmodel.cpp b/filemanager/model/placesmodel.cpp similarity index 100% rename from model/placesmodel.cpp rename to filemanager/model/placesmodel.cpp diff --git a/model/placesmodel.h b/filemanager/model/placesmodel.h similarity index 100% rename from model/placesmodel.h rename to filemanager/model/placesmodel.h diff --git a/model/positioner.cpp b/filemanager/model/positioner.cpp similarity index 100% rename from model/positioner.cpp rename to filemanager/model/positioner.cpp diff --git a/model/positioner.h b/filemanager/model/positioner.h similarity index 100% rename from model/positioner.h rename to filemanager/model/positioner.h diff --git a/filemanager/plugin.cpp b/filemanager/plugin.cpp new file mode 100644 index 0000000..9ab6a73 --- /dev/null +++ b/filemanager/plugin.cpp @@ -0,0 +1,38 @@ +#include +#include + +#include "model/placesmodel.h" +#include "model/foldermodel.h" +#include "model/pathbarmodel.h" +#include "model/positioner.h" +#include "widgets/rubberband.h" +#include "widgets/itemviewadapter.h" +#include "helper/datehelper.h" +#include "helper/fm.h" +#include "helper/shortcut.h" + +class QmlPlugins : public QQmlExtensionPlugin +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface") + +public: + void registerTypes(const char * uri) override { + // qmlRegisterType(uri, 1, 0, "OutputModel"); + #if QT_VERSION < QT_VERSION_CHECK(5, 14, 0) + qmlRegisterType(); + #else + qmlRegisterAnonymousType(uri, 1); + #endif + qmlRegisterType(uri, 1, 0, "PlacesModel"); + qmlRegisterType(uri, 1, 0, "FolderModel"); + qmlRegisterType(uri, 1, 0, "PathBarModel"); + qmlRegisterType(uri, 1, 0, "Positioner"); + qmlRegisterType(uri, 1, 0, "RubberBand"); + qmlRegisterType(uri, 1, 0, "ItemViewAdapter"); + qmlRegisterType(uri, 1, 0, "Fm"); + qmlRegisterType(uri, 1, 0, "ShortCut"); + } +}; + +#include "plugin.moc" \ No newline at end of file diff --git a/filemanager/qmldir b/filemanager/qmldir new file mode 100644 index 0000000..6740cb8 --- /dev/null +++ b/filemanager/qmldir @@ -0,0 +1,3 @@ +module Lingmo.FileManager + +plugin lingmofilemanager_qmlplugins \ No newline at end of file diff --git a/filemanager/translations/ar_AA.ts b/filemanager/translations/ar_AA.ts new file mode 100644 index 0000000..0c9ff51 --- /dev/null +++ b/filemanager/translations/ar_AA.ts @@ -0,0 +1,716 @@ + + + + + CreateFolderDialog + + + New folder name + اسم المجلد الجديد + + + + New folder + مجلد جديد + + + + Cancel + إلغاء + + + + OK + موافق + + + + DateHelper + + + Now + الآن + + + + 1 minute ago + منذ دقيقة واحدة + + + + %1 minutes ago + منذ %1 دقيقة + + + + 1 hour ago + منذ ساعة واحدة + + + + %1 hours ago + منذ %1 ساعة + + + + 1 day ago + منذ يوم واحد + + + + %1 days ago + منذ %1 يوم + + + + DeleteDialog + + + Do you want to delete it permanently? + متأكد من حذف هذا العنصر بشكل نهائي؟ + + + + + Cancel + إلغاء + + + + + Delete + حذف + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + إلغاء + + + + Delete + حذف + + + + DesktopView + + + Desktop + سطح المكتب + + + + EmptyTrashDialog + + + File Manager + مدير الملفات + + + + Do you want to permanently delete all files from the Trash? + هل تريد حذف جميع الملفات بصفة دائمة من سلة المهملات؟ + + + + Cancel + إلغاء + + + + Empty Trash + إفراغ سلة المهملات + + + + FilePropertiesDialog + + + Properties + خصائص + + + + %1 files + %1 ملف + + + + FolderModel + + + %1 item + %1 عنصر + + + + %1 items + %1 عنصر + + + + The file or folder %1 does not exist. + الملف أو المجلد %1 غير موجود. + + + + Select All + تحديد الكل + + + File Manager + مدير الملفات + + + + Open + فتح + + + + Open with + فتح بواسطة + + + + Cut + قص + + + + Copy + نسخ + + + + Paste + لصق + + + + + New Folder + مجلد جديد + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + نقل إلى سلة المهملات + + + + Empty Trash + إفراغ سلة المهملات + + + + Delete + حذف + + + + Rename + تعديل الاسم + + + + Open in Terminal + فتح في الطرفية + + + + Set as ... + + + + + Set as Wallpaper + تعيين كخلفية + + + + Set as Login Screen + + + + + Properties + خصائص + + + + Change background + تغيير الخلفية + + + + Restore + إستعادة + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + إلغاء + + + + FolderPage + + + Empty folder + مجلد فارغ + + + + Open + فتح + + + + + Properties + خصائص + + + + File + ملف + + + + New Folder + مجلد جديد + + + + Quit + خروج + + + + Edit + تحرير + + + + Select All + تحديد الكل + + + + Cut + قص + + + + Copy + نسخ + + + + Paste + لصق + + + + Help + مساعدة + + + + About + حول + + + + File Manager + مدير الملفات + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 عنصر + + + + %1 items + %1 عنصر + + + + %1 selected + تم تحديد %1 + + + + Empty Trash + إفراغ سلة المهملات + + + + Main + + File Manager + مدير الملفات + + + Open + فتح + + + + OpenWithDialog + + + No applications + لا توجد تطبيقات مناسبة + + + + Set as default + تعيين كإعداد افتراضي + + + + Cancel + إلغاء + + + + Open + فتح + + + + Open With + فتح بواسطة + + + + OptionsMenu + + + Icons + أيقونات + + + + List + قائمة + + + + Name + الاسم + + + + Date + التاريخ + + + + Type + النوع + + + + Size + الحجم + + + + PlacesModel + + + Home + المنزل + + + + Desktop + سطح المكتب + + + + Documents + المستندات + + + + Downloads + التنزيلات + + + + Music + الموسيقى + + + + Pictures + الصور + + + + Videos + الفيديوهات + + + + Trash + سلة المهمات + + + + + Drives + الأقراص + + + + Computer + + + + + PropertiesDialog + + + Type: + النوع: + + + + Location: + المكان: + + + + Size: + الحجم: + + + + Calculating... + تُجرى عملية الحساب... + + + + Created: + تاريخ الإنشاء: + + + + Modified: + تاريخ أحدث تعديل: + + + + Accessed: + تاريخ أحدث دخول: + + + + Cancel + إلغاء + + + + OK + موافق + + + + SideBar + + + Open + فتح + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + مدير الملفات + + + diff --git a/filemanager/translations/be_BY.ts b/filemanager/translations/be_BY.ts new file mode 100644 index 0000000..1dbacf4 --- /dev/null +++ b/filemanager/translations/be_BY.ts @@ -0,0 +1,716 @@ + + + + + CreateFolderDialog + + + New folder name + Назва новай папкі + + + + New folder + Новая папка + + + + Cancel + Адмена + + + + OK + ОК + + + + DateHelper + + + Now + Зараз + + + + 1 minute ago + 1 хвіліну таму + + + + %1 minutes ago + %1 хвілін таму + + + + 1 hour ago + 1 гадзіну таму + + + + %1 hours ago + %1 гадзін таму + + + + 1 day ago + 1 дзень таму + + + + %1 days ago + %1 дзён таму + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + Адмена + + + + + Delete + Выдаліць + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Адмена + + + + Delete + Выдаліць + + + + DesktopView + + + Desktop + Працоўны стол + + + + EmptyTrashDialog + + + File Manager + Менеджар файлаў + + + + Do you want to permanently delete all files from the Trash? + Вы хочаце назаўжды выдаліць усе файлы з сметніцы? + + + + Cancel + Адмена + + + + Empty Trash + Ачысціць сметніцу + + + + FilePropertiesDialog + + + Properties + Уласцівасці + + + + %1 files + %1 файлаў + + + + FolderModel + + + %1 item + %1 аб'ект + + + + %1 items + %1 аб'ектаў + + + + The file or folder %1 does not exist. + + + + + Select All + Вылучыць усё + + + + Open + Адкрыць + + + + Open with + + + + + Cut + Выразаць + + + + Copy + Капіяваць + + + + Paste + Уставіць + + + + + New Folder + Новая папка + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Перамясціць у сметніцу + + + + Empty Trash + Ачысціць сметніцу + + + + Delete + Выдаліць + + + + Rename + Перайменаваць + + + + Open in Terminal + Адкрыць у тэрмінале + + + + Set as ... + + + + + Set as Wallpaper + Усталяваць як шпалеры + + + + Set as Login Screen + + + + + Properties + Уласцівасці + + + + Change background + Змяніць фон + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Адмена + + + + FolderPage + + + Empty folder + Пустая папка + + + + Open + Адкрыць + + + + + Properties + Уласцівасці + + + + File + + + + + New Folder + Новая папка + + + + Quit + + + + + Edit + + + + + Select All + Вылучыць усё + + + + Cut + Выразаць + + + + Copy + Капіяваць + + + + Paste + Уставіць + + + + Help + + + + + About + + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 аб'ект + + + + %1 items + %1 аб'ектаў + + + + %1 selected + %1 вылучаны(-а) + + + + Empty Trash + Ачысціць сметніцу + + + + Main + + Open + Адкрыць + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + Адмена + + + + Open + Адкрыць + + + + Open With + + + + + OptionsMenu + + + Icons + Іконкі + + + + List + Спіс + + + + Name + Імя + + + + Date + Дата + + + + Type + + + + + Size + Памер + + + + PlacesModel + + + Home + Дамашняя папка + + + + Desktop + Працоўны стол + + + + Documents + Дакументы + + + + Downloads + Запампоўкі + + + + Music + Музыка + + + + Pictures + Відарысы + + + + Videos + Відэа + + + + Trash + Сметніца + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + Properties + Уласцівасці + + + + Type: + Тып: + + + + Location: + Размяшчэнне: + + + + Size: + Памер: + + + + Calculating... + Вылічэнне... + + + + Created: + Створана: + + + + Modified: + Зменена: + + + + Accessed: + Доступ: + + + + Cancel + Адмена + + + + OK + OK + + + %1 files + %1 файлаў + + + + SideBar + + + Open + Адкрыць + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Файлавы мэнэджар + + + diff --git a/filemanager/translations/be_Latn.ts b/filemanager/translations/be_Latn.ts new file mode 100644 index 0000000..8a940c4 --- /dev/null +++ b/filemanager/translations/be_Latn.ts @@ -0,0 +1,716 @@ + + + + + CreateFolderDialog + + + New folder name + Nazva novaj papki + + + + New folder + Novaja papka + + + + Cancel + Admiena + + + + OK + OK + + + + DateHelper + + + Now + Zaraz + + + + 1 minute ago + 1 chvilinu tamu + + + + %1 minutes ago + %1 chvilin tamu + + + + 1 hour ago + 1 hadzinu tamu + + + + %1 hours ago + %1 hadzin tamu + + + + 1 day ago + 1 dzień tamu + + + + %1 days ago + %1 dzion tamu + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + Admiena + + + + + Delete + Vydalić + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Admiena + + + + Delete + Vydalić + + + + DesktopView + + + Desktop + Pracoŭny stol + + + + EmptyTrashDialog + + + File Manager + Mieniedžar fajlaŭ + + + + Do you want to permanently delete all files from the Trash? + Vy chočacie nazaŭždy vydalić usie fajly z smietnicy? + + + + Cancel + Admiena + + + + Empty Trash + Ačyscić smietnicu + + + + FilePropertiesDialog + + + Properties + Ulascivasci + + + + %1 files + %1 fajlaŭ + + + + FolderModel + + + %1 item + %1 abjekt + + + + %1 items + %1 abjektaŭ + + + + The file or folder %1 does not exist. + + + + + Select All + Vylučyć usio + + + + Open + Adkryć + + + + Open with + + + + + Cut + Vyrazać + + + + Copy + Kapijavać + + + + Paste + Ustavić + + + + + New Folder + Novaja papka + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Pieramiascić u smietnicu + + + + Empty Trash + Ačyscić smietnicu + + + + Delete + Vydalić + + + + Rename + Pierajmienavać + + + + Open in Terminal + Adkryć u terminalie + + + + Set as ... + + + + + Set as Wallpaper + Ustaliavać jak špaliery + + + + Set as Login Screen + + + + + Properties + Ulascivasci + + + + Change background + Zmianić fon + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Admiena + + + + FolderPage + + + Empty folder + Pustaja papka + + + + Open + Adkryć + + + + + Properties + Ulascivasci + + + + File + + + + + New Folder + Novaja papka + + + + Quit + + + + + Edit + + + + + Select All + Vylučyć usio + + + + Cut + Vyrazać + + + + Copy + Kapijavać + + + + Paste + Ustavić + + + + Help + + + + + About + + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 abjekt + + + + %1 items + %1 abjektaŭ + + + + %1 selected + %1 vylučany + + + + Empty Trash + Ačyscić smietnicu + + + + Main + + Open + Adkryć + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + Admiena + + + + Open + Adkryć + + + + Open With + + + + + OptionsMenu + + + Icons + Ikonki + + + + List + Spis + + + + Name + Imia + + + + Date + Data + + + + Type + + + + + Size + Pamier + + + + PlacesModel + + + Home + Damašniaja papka + + + + Desktop + Pracoŭny stol + + + + Documents + Dakumienty + + + + Downloads + Zapampoŭki + + + + Music + Muzyka + + + + Pictures + Vidarysy + + + + Videos + Videa + + + + Trash + Smietnica + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + Properties + Ulascivasci + + + + Type: + Typ: + + + + Location: + Razmiaščennie: + + + + Size: + Pamier: + + + + Calculating... + Vyličennie... + + + + Created: + Stvorana: + + + + Modified: + Zmieniena: + + + + Accessed: + Dostup: + + + + Cancel + Admiena + + + + OK + OK + + + %1 files + %1 fajlaŭ + + + + SideBar + + + Open + Adkryć + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Fajlavy menedžar + + + diff --git a/filemanager/translations/bg_BG.ts b/filemanager/translations/bg_BG.ts new file mode 100644 index 0000000..1f4b6c2 --- /dev/null +++ b/filemanager/translations/bg_BG.ts @@ -0,0 +1,716 @@ + + + + + CreateFolderDialog + + + New folder name + Име на нова папка + + + + New folder + Нова папка + + + + Cancel + Отмени + + + + OK + Да + + + + DateHelper + + + Now + Сега + + + + 1 minute ago + преди 1 минута + + + + %1 minutes ago + %1 минути преди + + + + 1 hour ago + преди 1 час + + + + %1 hours ago + преди %1 часа + + + + 1 day ago + преди 1 ден + + + + %1 days ago + преди %1 дни + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + Отмени + + + + + Delete + Изтрийте + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Отмени + + + + Delete + Изтрийте + + + + DesktopView + + + Desktop + Работен плот + + + + EmptyTrashDialog + + + File Manager + Файлов мениджър + + + + Do you want to permanently delete all files from the Trash? + Искате ли да изтриете окончателно всички файлове от кошчето? + + + + Cancel + Отмени + + + + Empty Trash + Празен кошчето + + + + FilePropertiesDialog + + + Properties + Свойства + + + + %1 files + %1 файлове + + + + FolderModel + + + %1 item + %1 елемент + + + + %1 items + %1 елементи + + + + The file or folder %1 does not exist. + + + + + Select All + Избери всички + + + File Manager + Файлов мениджър + + + + Open + Отвори + + + + Open with + Отворете с + + + + Cut + Изрежете + + + + Copy + Копирайте + + + + Paste + + + + + + New Folder + Нова папка + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Преместване в кошчето + + + + Empty Trash + Празен кошчето + + + + Delete + Изтрийте + + + + Rename + Преименувайте + + + + Open in Terminal + Отваряне в терминал + + + + Set as ... + + + + + Set as Wallpaper + Задаване като тапет + + + + Set as Login Screen + + + + + Properties + Свойства + + + + Change background + Смяна на фона + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Отмени + + + + FolderPage + + + Empty folder + Празна папка + + + + Open + Отвори + + + + + Properties + Свойства + + + + File + Файл + + + + New Folder + Нова папка + + + + Quit + + + + + Edit + Редактиране + + + + Select All + Изберете всички + + + + Cut + Изрежете + + + + Copy + Копирайте + + + + Paste + + + + + Help + Помощ + + + + About + За + + + + File Manager + Файлов мениджър + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 елемент + + + + %1 items + %1 елемента + + + + %1 selected + %1 избран + + + + Empty Trash + Празен кошчето + + + + Main + + File Manager + Файлов мениджър + + + Open + Отвори + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + Отмени + + + + Open + Отвори + + + + Open With + + + + + OptionsMenu + + + Icons + + + + + List + + + + + Name + + + + + Date + + + + + Type + + + + + Size + + + + + PlacesModel + + + Home + + + + + Desktop + Работен плот + + + + Documents + + + + + Downloads + + + + + Music + + + + + Pictures + + + + + Videos + + + + + Trash + + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + + Type: + + + + + Location: + + + + + Size: + + + + + Calculating... + + + + + Created: + + + + + Modified: + + + + + Accessed: + + + + + Cancel + Отмени + + + + OK + Да + + + + SideBar + + + Open + Отвори + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Файлов мениджър + + + diff --git a/filemanager/translations/bs_BA.ts b/filemanager/translations/bs_BA.ts new file mode 100644 index 0000000..d5ca3d3 --- /dev/null +++ b/filemanager/translations/bs_BA.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Novo ime fascikle + + + + New folder + Nova fascikla + + + + Cancel + Otkaži + + + + OK + U redu + + + + DateHelper + + + Now + Sada + + + + 1 minute ago + Prije 1 minutu + + + + %1 minutes ago + Prije %1 minuta + + + + 1 hour ago + Prije 1 sat + + + + %1 hours ago + Prije %1 sati + + + + 1 day ago + Prije 1 dan + + + + %1 days ago + Prije %1 dana + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + Otkaži + + + + + Delete + Obriši + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Otkaži + + + + Delete + Obriši + + + + DesktopView + + + Desktop + Radna površina + + + + EmptyTrashDialog + + + File Manager + Upravitelj fajlova + + + + Do you want to permanently delete all files from the Trash? + Želite li trajno izbrisati sve fajlove iz Smeća? + + + + Cancel + Otkaži + + + + Empty Trash + Isprazni smeće + + + + FilePropertiesDialog + + + Properties + Svojstva + + + + %1 files + %1 fajlova + + + + FolderModel + + + %1 item + %1 stavka + + + + %1 items + %1 stavki + + + + The file or folder %1 does not exist. + + + + + Select All + Izaberi sve + + + File Manager + Upravitelj fajlova + + + + Open + Otvori + + + + Open with + + + + + Cut + Izreži + + + + Copy + Kopiraj + + + + Paste + Zalijepi + + + + + New Folder + Nova fascikla + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Premjesti u smeće + + + + Empty Trash + Isprazni smeće + + + + Delete + Obriši + + + + Rename + Preimenuj + + + + Open in Terminal + Otvori u terminalu + + + + Set as ... + + + + + Set as Wallpaper + Postavi kao pozadinu + + + + Set as Login Screen + + + + + Properties + Svojstva + + + + Change background + Promijeni pozadinu + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Otkaži + + + + FolderPage + + + Empty folder + Prazna fascikla + + + + Open + Otvori + + + + + Properties + Svojstva + + + + File + + + + + New Folder + Nova fascikla + + + + Quit + + + + + Edit + + + + + Select All + Izaberi sve + + + + Cut + Izreži + + + + Copy + Kopiraj + + + + Paste + Zalijepi + + + + Help + + + + + About + + + + + File Manager + Upravitelj fajlova + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 stavka + + + + %1 items + %1 stavki + + + + %1 selected + %1 odabrano + + + + Empty Trash + Isprazni smeće + + + + Main + + File Manager + Upravitelj fajlova + + + Open + Otvori + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + Otkaži + + + + Open + Otvori + + + + Open With + + + + + OptionsMenu + + + Icons + Ikone + + + + List + Spisak + + + + Name + Ime + + + + Date + Datum + + + + Type + + + + + Size + Veličina + + + + PlacesModel + + + Home + Dom + + + + Desktop + Radna površina + + + + Documents + Dokumenti + + + + Downloads + Preuzimanja + + + + Music + Muzika + + + + Pictures + Slike + + + + Videos + Videozapisi + + + + Trash + Smeće + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + Properties + Svojstva + + + + Type: + Vrsta: + + + + Location: + Lokacija: + + + + Size: + Veličina: + + + + Calculating... + Računanje... + + + + Created: + Napravljeno: + + + + Modified: + Izmijenjeno: + + + + Accessed: + Pristupljeno: + + + + Cancel + Otkaži + + + + OK + U redu + + + %1 files + %1 fajlova + + + + SideBar + + + Open + Otvori + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Upravitelj fajlova + + + diff --git a/filemanager/translations/cs_CZ.ts b/filemanager/translations/cs_CZ.ts new file mode 100644 index 0000000..4c04438 --- /dev/null +++ b/filemanager/translations/cs_CZ.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Název nové složky + + + + New folder + Nová složka + + + + Cancel + Storno + + + + OK + OK + + + + DateHelper + + + Now + Nyní + + + + 1 minute ago + Před jednou minutou + + + + %1 minutes ago + Před %1 minutami + + + + 1 hour ago + Před jednou hodinou + + + + %1 hours ago + Před %1 hodinami + + + + 1 day ago + Před jedním dnem + + + + %1 days ago + Před %1 dny + + + + DeleteDialog + + + Do you want to delete it permanently? + Chcete ho nevratně smazat? + + + + + Cancel + Storno + + + + + Delete + Smazat + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Storno + + + + Delete + Smazat + + + + DesktopView + + + Desktop + Plocha + + + + EmptyTrashDialog + + + File Manager + Správce souborů + + + + Do you want to permanently delete all files from the Trash? + Chcete nevratně smazat všechny soubory z koše? + + + + Cancel + Storno + + + + Empty Trash + Vysypat Koš + + + + FilePropertiesDialog + + + Properties + Vlastnosti + + + + %1 files + %1 souborů + + + + FolderModel + + + %1 item + %1 položka + + + + %1 items + %1 položek + + + + The file or folder %1 does not exist. + Soubor nebo složka %1 neexistuje. + + + + Select All + Vybrat vše + + + File Manager + Správce souborů + + + + Open + Otevřít + + + + Open with + Otevřít s + + + + Cut + Vyjmout + + + + Copy + Zkopírovat + + + + Paste + Vložit + + + + + New Folder + Nová složka + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Přesunout do Koše + + + + Empty Trash + Vysypat Koš + + + + Delete + Smazat + + + + Rename + Přejmenovat + + + + Open in Terminal + Otevřít v Terminálu + + + + Set as ... + + + + + Set as Wallpaper + Nastavit jako pozadí plochy + + + + Set as Login Screen + + + + + Properties + Vlastnosti + + + + Change background + Změnit pozadí + + + + Restore + Obnovit + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Storno + + + + FolderPage + + + Empty folder + Prázdná složka + + + + Open + Otevřít + + + + + Properties + Vlastnosti + + + + File + Soubor + + + + New Folder + Nová složka + + + + Quit + Ukončit + + + + Edit + Upravit + + + + Select All + Vybrat vše + + + + Cut + Vyjmout + + + + Copy + Zkopírovat + + + + Paste + Vložit + + + + Help + Nápověda + + + + About + O aplikaci + + + + File Manager + Správce souborů + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 položka + + + + %1 items + %1 položek + + + + %1 selected + %1 vybráno + + + + Empty Trash + Vysypat Koš + + + + Main + + File Manager + Správce souborů + + + Open + Otevřít + + + + OpenWithDialog + + + No applications + Žádné aplikace + + + + Set as default + Nastavit jako výchozí + + + + Cancel + Storno + + + + Open + Otevřít + + + + Open With + Otevřít s + + + + OptionsMenu + + + Icons + Ikony + + + + List + Seznam + + + + Name + Název + + + + Date + Datum + + + + Type + Typ + + + + Size + Velikost + + + + PlacesModel + + + Home + Domovská složka + + + + Desktop + Plocha + + + + Documents + Dokumenty + + + + Downloads + Stažené + + + + Music + Hudba + + + + Pictures + Obrázky + + + + Videos + Videa + + + + Trash + Koš + + + + + Drives + Ovladače + + + + Computer + + + + + PropertiesDialog + + Properties + Vlastnosti + + + + Type: + Typ souboru: + + + + Location: + Umístění: + + + + Size: + Velikost: + + + + Calculating... + Počítání… + + + + Created: + Vytvořeno: + + + + Modified: + Upraveno: + + + + Accessed: + Naposledy otevřeno: + + + + Cancel + Storno + + + + OK + OK + + + %1 files + %1 složek + + + + SideBar + + + Open + Otevřít + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Správce souborů + + + diff --git a/filemanager/translations/da_DK.ts b/filemanager/translations/da_DK.ts new file mode 100644 index 0000000..e81d14e --- /dev/null +++ b/filemanager/translations/da_DK.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Nyt mappnavn + + + + New folder + Ny mappe + + + + Cancel + Annuller + + + + OK + OK + + + + DateHelper + + + Now + Nu + + + + 1 minute ago + 1 minut siden + + + + %1 minutes ago + %1 minut siden + + + + 1 hour ago + 1 time siden + + + + %1 hours ago + %1 timer siden + + + + 1 day ago + 1 dag siden + + + + %1 days ago + %1 dage siden + + + + DeleteDialog + + + Do you want to delete it permanently? + Vil du slette det permanent? + + + + + Cancel + Annuller + + + + + Delete + Slet + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Annuller + + + + Delete + Slet + + + + DesktopView + + + Desktop + Skrivebord + + + + EmptyTrashDialog + + + File Manager + File Manager + + + + Do you want to permanently delete all files from the Trash? + Ønsker du at slette alle filer permanent fra papirkurven? + + + + Cancel + Annuller + + + + Empty Trash + Tøm papirkurven + + + + FilePropertiesDialog + + + Properties + Egenskaber + + + + %1 files + %1 filer + + + + FolderModel + + + %1 item + %1 element + + + + %1 items + %1 elementer + + + + The file or folder %1 does not exist. + Filen eller mappen %1 findes ikke. + + + + Select All + Vælg alle + + + File Manager + File Manager + + + + Open + Åbn + + + + Open with + Åbn med + + + + Cut + Skær + + + + Copy + Kopier + + + + Paste + Indsæt + + + + + New Folder + Ny mappe + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Flyt til papirkurven + + + + Empty Trash + Tøm papirkurven + + + + Delete + Slet + + + + Rename + Omdøb + + + + Open in Terminal + Åbn i Terminal + + + + Set as ... + + + + + Set as Wallpaper + Indstille som tapet + + + + Set as Login Screen + + + + + Properties + Egenskaber + + + + Change background + Ændre baggrund + + + + Restore + Gendan + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Annuller + + + + FolderPage + + + Empty folder + Tomme mapper + + + + Open + Åbn + + + + + Properties + Egenskaber + + + + File + Fil + + + + New Folder + Ny mappe + + + + Quit + Forlade + + + + Edit + Redigere + + + + Select All + Vælg alle + + + + Cut + Skær + + + + Copy + Kopier + + + + Paste + Indsæt + + + + Help + Hjælp + + + + About + Om + + + + File Manager + File Manager + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 element + + + + %1 items + %1 elementer + + + + %1 selected + %1 valgt + + + + Empty Trash + Tøm papirkurven + + + + Main + + File Manager + File Manager + + + Open + Åbn + + + + OpenWithDialog + + + No applications + Ingen ansøgninger + + + + Set as default + Indstil som standard + + + + Cancel + Annuller + + + + Open + Åbn + + + + Open With + Åbn med + + + + OptionsMenu + + + Icons + Ikoner + + + + List + Liste + + + + Name + Navn + + + + Date + Dato + + + + Type + Type + + + + Size + Størrelse + + + + PlacesModel + + + Home + Hjem + + + + Desktop + Skrivebord + + + + Documents + Dokumenter + + + + Downloads + Downloads + + + + Music + Musik + + + + Pictures + Billeder + + + + Videos + Videoer + + + + Trash + Affald + + + + + Drives + Kører + + + + Computer + + + + + PropertiesDialog + + Properties + Egenskaber + + + + Type: + Type: + + + + Location: + Beliggenhed: + + + + Size: + Størrelse: + + + + Calculating... + Beregning... + + + + Created: + Oprettet: + + + + Modified: + Ændret: + + + + Accessed: + Tilgået: + + + + Cancel + Annuller + + + + OK + OK + + + %1 files + %1 filer + + + + SideBar + + + Open + Åbn + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + File Manager + + + diff --git a/filemanager/translations/de_DE.ts b/filemanager/translations/de_DE.ts new file mode 100644 index 0000000..42f27c3 --- /dev/null +++ b/filemanager/translations/de_DE.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Neuer Ordnername + + + + New folder + Neuer Ordner + + + + Cancel + Abbrechen + + + + OK + OK + + + + DateHelper + + + Now + Jetzt + + + + 1 minute ago + vor 1 Minute + + + + %1 minutes ago + vor %1 Minuten + + + + 1 hour ago + vor 1 Stunde + + + + %1 hours ago + vor %1 Stunden + + + + 1 day ago + vor 1 Tag + + + + %1 days ago + vor %1 Tagen + + + + DeleteDialog + + + Do you want to delete it permanently? + Wollen Sie es endgültig löschen? + + + + + Cancel + Abbrechen + + + + + Delete + Löschen + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Abbrechen + + + + Delete + Löschen + + + + DesktopView + + + Desktop + Schreibtisch + + + + EmptyTrashDialog + + + File Manager + Dateiverwaltung + + + + Do you want to permanently delete all files from the Trash? + Wollen Sie alle Dateien dauerhaft aus dem Papierkorb löschen? + + + + Cancel + Abbrechen + + + + Empty Trash + Papierkorb leeren + + + + FilePropertiesDialog + + + Properties + Eigenschaften + + + + %1 files + %1 Dateien + + + + FolderModel + + + %1 item + %1 Element + + + + %1 items + %1 Elemente + + + + The file or folder %1 does not exist. + Die Datei oder der Ordner %1 existiert nicht. + + + + Select All + Alle auswählen + + + File Manager + Dateiverwaltung + + + + Open + Öffnen + + + + Open with + Öffnen mit + + + + Cut + Ausschneiden + + + + Copy + Kopieren + + + + Paste + Einfügen + + + + + New Folder + Neuer Ordner + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + In Papierkorb verschieben + + + + Empty Trash + Papierkorb leeren + + + + Delete + Löschen + + + + Rename + Umbenennen + + + + Open in Terminal + Im Terminal öffnen + + + + Set as ... + + + + + Set as Wallpaper + Als Hintergrundbild festlegen + + + + Set as Login Screen + + + + + Properties + Eigenschaften + + + + Change background + Hintergrund ändern + + + + Restore + Wiederherstellen + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Abbrechen + + + + FolderPage + + + Empty folder + Leerer Ordner + + + + Open + Öffnen + + + + + Properties + Eigenschaften + + + + File + Datei + + + + New Folder + Neuer Ordner + + + + Quit + Beenden + + + + Edit + Bearbeiten + + + + Select All + Alle auswählen + + + + Cut + Ausschneiden + + + + Copy + Kopieren + + + + Paste + Einfügen + + + + Help + Hilfe + + + + About + Über + + + + File Manager + Dateiverwaltung + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 Element + + + + %1 items + %1 Elemente + + + + %1 selected + %1 ausgewählt + + + + Empty Trash + Papierkorb leeren + + + + Main + + File Manager + Dateiverwaltung + + + Open + Öffnen + + + + OpenWithDialog + + + No applications + Keine Anwendungen + + + + Set as default + Als Standard einstellen + + + + Cancel + Abbrechen + + + + Open + Öffnen + + + + Open With + Öffnen mit + + + + OptionsMenu + + + Icons + Symbole + + + + List + Liste + + + + Name + Name + + + + Date + Datum + + + + Type + Typ + + + + Size + Größe + + + + PlacesModel + + + Home + Startseite + + + + Desktop + Schreibtisch + + + + Documents + Dokumente + + + + Downloads + Heruntergeladene + + + + Music + Musik + + + + Pictures + Bilder + + + + Videos + Videos + + + + Trash + Papierkorb + + + + + Drives + Laufwerke + + + + Computer + + + + + PropertiesDialog + + Properties + Eigenschaften + + + + Type: + Typ: + + + + Location: + Speicherort: + + + + Size: + Größe: + + + + Calculating... + Berechne … + + + + Created: + Erstellt: + + + + Modified: + Geändert: + + + + Accessed: + Zugegriffen: + + + + Cancel + Abbrechen + + + + OK + OK + + + %1 files + %1 Dateien + + + + SideBar + + + Open + Öffnen + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Dateiverwaltung + + + diff --git a/filemanager/translations/en_US.ts b/filemanager/translations/en_US.ts new file mode 100644 index 0000000..9974f02 --- /dev/null +++ b/filemanager/translations/en_US.ts @@ -0,0 +1,716 @@ + + + + + CreateFolderDialog + + + New folder name + New folder name + + + + New folder + New folder + + + + Cancel + Cancel + + + + OK + OK + + + + DateHelper + + + Now + Now + + + + 1 minute ago + 1 minute ago + + + + %1 minutes ago + %1 minutes ago + + + + 1 hour ago + 1 hour ago + + + + %1 hours ago + %1 hours ago + + + + 1 day ago + 1 day ago + + + + %1 days ago + %1 days ago + + + + DeleteDialog + + + Do you want to delete it permanently? + Do you want to delete it permanently? + + + + + Cancel + Cancel + + + + + Delete + Delete + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Cancel + + + + Delete + Delete + + + + DesktopView + + + Desktop + Desktop + + + + EmptyTrashDialog + + + File Manager + File Manager + + + + Do you want to permanently delete all files from the Trash? + Do you want to permanently delete all files from the Trash? + + + + Cancel + Cancel + + + + Empty Trash + Empty Trash + + + + FilePropertiesDialog + + + Properties + Properties + + + + %1 files + %1 files + + + + FolderModel + + + %1 item + %1 item + + + + %1 items + %1 items + + + + The file or folder %1 does not exist. + The file or folder %1 does not exist. + + + + Select All + Select All + + + File Manager + File Manager + + + + Open + Open + + + + Open with + Open with + + + + Cut + Cut + + + + Copy + Copy + + + + Paste + Paste + + + + + New Folder + New Folder + + + + + New Text + New Text + + + + + New Documents + New Document + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Move To Trash + + + + Empty Trash + Empty Trash + + + + Delete + Delete + + + + Rename + Rename + + + + Open in Terminal + Open in Terminal + + + + Set as ... + + + + + Set as Wallpaper + Set as Wallpaper + + + + Set as Login Screen + + + + + Properties + Properties + + + + Change background + Change background + + + + Restore + Restore + + + + Show hidden files + Show hidden files + + + + Open in new window + Open in new window + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Cancel + + + + FolderPage + + + Empty folder + Empty folder + + + + Open + Open + + + + + Properties + Properties + + + + File + File + + + + New Folder + New Folder + + + + Quit + Quit + + + + Edit + Edit + + + + Select All + Select All + + + + Cut + Cut + + + + Copy + Copy + + + + Paste + Paste + + + + Help + Help + + + + About + About + + + + File Manager + File Manager + + + + A file manager designed for LingmoOS. + A file manager designed for LingmoOS. + + + + %1 item + %1 item + + + + %1 items + %1 items + + + + %1 selected + %1 selected + + + + Empty Trash + Empty Trash + + + + Main + + File Manager + File Manager + + + Open + Open + + + + OpenWithDialog + + + No applications + No applications + + + + Set as default + Set as default + + + + Cancel + Cancel + + + + Open + Open + + + + Open With + Open With + + + + OptionsMenu + + + Icons + Icons + + + + List + List + + + + Name + Name + + + + Date + Date + + + + Type + Type + + + + Size + Size + + + + PlacesModel + + + Home + Home + + + + Desktop + Desktop + + + + Documents + Documents + + + + Downloads + Downloads + + + + Music + Music + + + + Pictures + Pictures + + + + Videos + Videos + + + + Trash + Trash + + + + + Drives + Drives + + + + Computer + Computer + + + + PropertiesDialog + + + Type: + Type: + + + + Location: + Location: + + + + Size: + Size: + + + + Calculating... + Calculating... + + + + Created: + Created: + + + + Modified: + Modified: + + + + Accessed: + Accessed: + + + + Cancel + Cancel + + + + OK + OK + + + + SideBar + + + Open + Open + + + + Open in new window + Open in new window + + + + Eject + Eject + + + + Unmount + Unmount + + + + main + + + File Manager + File Manager + + + diff --git a/filemanager/translations/eo_XX.ts b/filemanager/translations/eo_XX.ts new file mode 100644 index 0000000..ae9fc0f --- /dev/null +++ b/filemanager/translations/eo_XX.ts @@ -0,0 +1,697 @@ + + + + + CreateFolderDialog + + + New folder name + + + + + New folder + + + + + Cancel + + + + + OK + + + + + DateHelper + + + Now + + + + + 1 minute ago + + + + + %1 minutes ago + + + + + 1 hour ago + + + + + %1 hours ago + + + + + 1 day ago + + + + + %1 days ago + + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + + + + + + Delete + + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + + + + + Delete + + + + + DesktopView + + + Desktop + + + + + EmptyTrashDialog + + + File Manager + + + + + Do you want to permanently delete all files from the Trash? + + + + + Cancel + + + + + Empty Trash + + + + + FilePropertiesDialog + + + Properties + + + + + %1 files + + + + + FolderModel + + + %1 item + + + + + %1 items + + + + + The file or folder %1 does not exist. + + + + + Select All + + + + + Open + + + + + Open with + + + + + Cut + + + + + Copy + + + + + Paste + + + + + + New Folder + + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + + + + + Empty Trash + + + + + Delete + + + + + Rename + + + + + Open in Terminal + + + + + Set as ... + + + + + Set as Wallpaper + + + + + Set as Login Screen + + + + + Properties + + + + + Change background + + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + + FolderPage + + + Empty folder + + + + + Open + + + + + + Properties + + + + + File + + + + + New Folder + + + + + Quit + + + + + Edit + + + + + Select All + + + + + Cut + + + + + Copy + + + + + Paste + + + + + Help + + + + + About + + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + %1 item + + + + + %1 items + + + + + %1 selected + + + + + Empty Trash + + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + + + + + Open + + + + + Open With + + + + + OptionsMenu + + + Icons + + + + + List + + + + + Name + + + + + Date + + + + + Type + + + + + Size + + + + + PlacesModel + + + Home + + + + + Desktop + + + + + Documents + + + + + Downloads + + + + + Music + + + + + Pictures + + + + + Videos + + + + + Trash + + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + + Type: + + + + + Location: + + + + + Size: + + + + + Calculating... + + + + + Created: + + + + + Modified: + + + + + Accessed: + + + + + Cancel + + + + + OK + + + + + SideBar + + + Open + + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + + + + diff --git a/filemanager/translations/es_ES.ts b/filemanager/translations/es_ES.ts new file mode 100644 index 0000000..f755c1c --- /dev/null +++ b/filemanager/translations/es_ES.ts @@ -0,0 +1,720 @@ + + + + + CreateFolderDialog + + + New folder name + Nuevo nombre de carpeta + + + + New folder + Nueva carpeta + + + + Cancel + Cancelar + + + + OK + OK + + + + DateHelper + + + Now + Ahora + + + + 1 minute ago + hace 1 minuto + + + + %1 minutes ago + hace %1 minutos + + + + 1 hour ago + hace 1 hora + + + + %1 hours ago + hace %1 horas + + + + 1 day ago + hace 1 día + + + + %1 days ago + hace %1 días + + + + DeleteDialog + + + Do you want to delete it permanently? + ¿Quieres eliminarlo permanentemente? + + + + + Cancel + Cancelar + + + + + Delete + Eliminar + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Cancelar + + + + Delete + Eliminar + + + + DesktopView + + + Desktop + Escritorio + + + + EmptyTrashDialog + + + File Manager + Administrador de Archivos + + + + Do you want to permanently delete all files from the Trash? + ¿Quieres borrar de forma permanente todos los archivos de la Papelera? + + + + Cancel + Cancelar + + + + Empty Trash + Vaciar Papelera + + + + FilePropertiesDialog + + + Properties + Propiedades + + + + %1 files + %1 archivos + + + + FolderModel + + + %1 item + artículo %1 + + + + %1 items + Artículos %1 + + + + The file or folder %1 does not exist. + El archivo o carpeta %1 no existe. + + + + Select All + Seleccionar Todo + + + File Manager + Administrador de archivos + + + + Open + Abrir + + + + Open with + Abrir con + + + + Cut + Cortar + + + + Copy + Copiar + + + + Paste + Pegar + + + + + New Folder + Nueva Carpeta + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Mover a la Papelera + + + + Empty Trash + Vaciar Papelera + + + + Delete + Eliminar + + + + Rename + Renombrar + + + + Open in Terminal + Abrir en la Terminal + + + + Set as ... + + + + + Set as Wallpaper + Configurar cómo Papel Tapiz + + + + Set as Login Screen + + + + + Properties + Propiedades + + + + Change background + Cambiar fondo + + + + Restore + Restaurar + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Cancelar + + + + FolderPage + + + Empty folder + Carpeta vacía + + + + Open + Abrir + + + + + Properties + Propiedades + + + + File + Archivo + + + + New Folder + Carpeta nueva + + + + Quit + Abandonar + + + + Edit + Editar + + + + Select All + Seleccionar todo + + + + Cut + Cortar + + + + Copy + Copiar + + + + Paste + Pegar + + + + Help + Ayuda + + + + About + Acerca de + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 artículo + + + + %1 items + %1 artículos + + + + %1 selected + %1 seleccionado + + + + Empty Trash + Papelera Vacía + + + + Main + + Open + Abrir + + + + OpenWithDialog + + + No applications + Sin aplicaciones + + + + Set as default + Establecer por defecto + + + + Cancel + Cancelar + + + + Open + Abrir + + + + Open With + Abrir con + + + + OptionsMenu + + + Icons + Iconos + + + + List + Lista + + + + Name + Nombre + + + + Date + Fecha + + + + Type + Tipo + + + + Size + Tamaño + + + + PlacesModel + + + Home + Hogar + + + + Desktop + Escritorio + + + + Documents + Documentos + + + + Downloads + Descargas + + + + Music + Música + + + + Pictures + Imágenes + + + + Videos + Vídeos + + + + Trash + Papelera + + + + + Drives + Drives + + + + Computer + + + + + PropertiesDialog + + Properties + Propiedades + + + + Type: + Tipo: + + + + Location: + Ubicación: + + + + Size: + Tamaño: + + + + Calculating... + Calculando... + + + + Created: + Creado: + + + + Modified: + Modificado: + + + + Accessed: + Accedido: + + + + Cancel + Cancelar + + + + OK + OK + + + %1 files + %1 archivos + + + + SideBar + + + Open + Abrir + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Administrador de Archivos + + + diff --git a/filemanager/translations/es_MX.ts b/filemanager/translations/es_MX.ts new file mode 100644 index 0000000..53b56f7 --- /dev/null +++ b/filemanager/translations/es_MX.ts @@ -0,0 +1,720 @@ + + + + + CreateFolderDialog + + + New folder name + Nombre de la nueva carpeta + + + + New folder + Nueva carpeta + + + + Cancel + Cancelar + + + + OK + De acuerdo + + + + DateHelper + + + Now + Ahora + + + + 1 minute ago + Hace un minuto + + + + %1 minutes ago + Hace %1 minutos + + + + 1 hour ago + Hace 1 hora + + + + %1 hours ago + Hace %1 horas + + + + 1 day ago + Hace 1 día + + + + %1 days ago + Hace %1 días + + + + DeleteDialog + + + Do you want to delete it permanently? + ¿Quieres eliminarlo permanentemente? + + + + + Cancel + Cancelar + + + + + Delete + Eliminar + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Cancelar + + + + Delete + Eliminar + + + + DesktopView + + + Desktop + Escritorio + + + + EmptyTrashDialog + + + File Manager + Gestor de Archivos + + + + Do you want to permanently delete all files from the Trash? + ¿Quieres eliminar permanentemente todos los archivos de la Papelera? + + + + Cancel + Cancelar + + + + Empty Trash + Papelera Vacía + + + + FilePropertiesDialog + + + Properties + Propiedades + + + + %1 files + %1 archivos + + + + FolderModel + + + %1 item + %1 elemento + + + + %1 items + %1 elementos + + + + The file or folder %1 does not exist. + El archivo o carpeta %1 no existe. + + + + Select All + Seleccionar Todo + + + File Manager + Administrador de archivos + + + + Open + Abrir + + + + Open with + Abrir con + + + + Cut + Cortar + + + + Copy + Copiar + + + + Paste + Pegar + + + + + New Folder + Nueva Carpeta + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Mover a la Papelera + + + + Empty Trash + Papelera vacía + + + + Delete + Eliminar + + + + Rename + Renombrar + + + + Open in Terminal + Abrir en la Terminal + + + + Set as ... + + + + + Set as Wallpaper + Establecer como fondo de pantalla + + + + Set as Login Screen + + + + + Properties + Propiedades + + + + Change background + Cambiar fondo + + + + Restore + Restaurar + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Cancelar + + + + FolderPage + + + Empty folder + Carpeta vacía + + + + Open + Abrir + + + + + Properties + Propiedades + + + + File + Archivo + + + + New Folder + Nueva Carpeta + + + + Quit + Quitar + + + + Edit + Editar + + + + Select All + Seleccionar Todo + + + + Cut + Cortar + + + + Copy + Copiar + + + + Paste + Pegar + + + + Help + Ayuda + + + + About + Acerca de + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 elemento + + + + %1 items + %1 elementos + + + + %1 selected + %1 seleccionado + + + + Empty Trash + Papelera vacía + + + + Main + + Open + Abrir + + + + OpenWithDialog + + + No applications + Sin aplicaciones + + + + Set as default + Establecer como predeterminado + + + + Cancel + Cancelar + + + + Open + Abrir + + + + Open With + Abrir con + + + + OptionsMenu + + + Icons + Iconos + + + + List + Lista + + + + Name + Nombre + + + + Date + Fecha + + + + Type + Tipo + + + + Size + Tamaño + + + + PlacesModel + + + Home + Inicio + + + + Desktop + Escritorio + + + + Documents + Documentos + + + + Downloads + Descargas + + + + Music + Música + + + + Pictures + Imágenes + + + + Videos + Vídeos + + + + Trash + Papelera + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + Properties + Propiedades + + + + Type: + Tipo: + + + + Location: + Ubicación: + + + + Size: + Tamaño: + + + + Calculating... + Calculando... + + + + Created: + Creado: + + + + Modified: + Modificado: + + + + Accessed: + Accedido: + + + + Cancel + Cancelar + + + + OK + De acuerdo + + + %1 files + %1 archivos + + + + SideBar + + + Open + Abrir + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Gestor de archivos + + + diff --git a/filemanager/translations/fa_IR.ts b/filemanager/translations/fa_IR.ts new file mode 100644 index 0000000..97f7bea --- /dev/null +++ b/filemanager/translations/fa_IR.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + نام پوشه جدید + + + + New folder + پوشه جدید + + + + Cancel + لغو کردن + + + + OK + ساختن + + + + DateHelper + + + Now + اکنون + + + + 1 minute ago + ۱ دقیقه قبل + + + + %1 minutes ago + %1 دقیقه قبل + + + + 1 hour ago + ۱ ساعت قبل + + + + %1 hours ago + %1 ساعت قبل + + + + 1 day ago + ۱ روز قبل + + + + %1 days ago + %1 روز قبل + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + لغو کردن + + + + + Delete + حذف + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + لغو کردن + + + + Delete + حذف + + + + DesktopView + + + Desktop + دسکتاپ + + + + EmptyTrashDialog + + + File Manager + مدیر پرونده + + + + Do you want to permanently delete all files from the Trash? + آیا میخواهید تمام فایل‌ها را از زباله‌‌دانی حذف کنید؟ + + + + Cancel + لغو کردن + + + + Empty Trash + خالی کردن زباله‌دانی + + + + FilePropertiesDialog + + + Properties + خواص + + + + %1 files + %1 پرونده + + + + FolderModel + + + %1 item + %1 مورد + + + + %1 items + %1 مورد + + + + The file or folder %1 does not exist. + + + + + Select All + انتخاب همه + + + File Manager + مدیر پرونده + + + + Open + باز کردن + + + + Open with + + + + + Cut + برش + + + + Copy + رونوشت + + + + Paste + چسباندن + + + + + New Folder + پوشه جدید + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + انتقال به سطل زباله + + + + Empty Trash + خالی کردن سطل زباله + + + + Delete + حذف + + + + Rename + تغییر نام + + + + Open in Terminal + باز کردن در ترمینال + + + + Set as ... + + + + + Set as Wallpaper + تنظیم به عنوان تصویر زمینه + + + + Set as Login Screen + + + + + Properties + خواص + + + + Change background + تغییر پیش‌زمینه + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + لغو کردن + + + + FolderPage + + + Empty folder + خالی کردن پوشه + + + + Open + باز کردن + + + + + Properties + خواص + + + + File + + + + + New Folder + پوشه جدید + + + + Quit + + + + + Edit + + + + + Select All + انتخاب همه + + + + Cut + برش + + + + Copy + رونوشت + + + + Paste + چسباندن + + + + Help + + + + + About + + + + + File Manager + مدیر پرونده + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 مورد + + + + %1 items + %1 مورد + + + + %1 selected + %1 انتخاب شده + + + + Empty Trash + خالی کردن زباله‌دانی + + + + Main + + File Manager + مدیر پرونده + + + Open + باز کردن + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + لغو کردن + + + + Open + باز کردن + + + + Open With + + + + + OptionsMenu + + + Icons + نمادها + + + + List + فهرست + + + + Name + نام + + + + Date + تاریخ + + + + Type + + + + + Size + اندازه + + + + PlacesModel + + + Home + خانه + + + + Desktop + دسکتاپ + + + + Documents + اسناد + + + + Downloads + بارگیری‌ها + + + + Music + موسیقی + + + + Pictures + تصاویر + + + + Videos + ویدئوها + + + + Trash + زباله‌دانی + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + Properties + خواص + + + + Type: + نوع: + + + + Location: + مکان: + + + + Size: + اندازه: + + + + Calculating... + در حال محاسبه... + + + + Created: + ساخته شده: + + + + Modified: + اصلاح شده: + + + + Accessed: + دسترسی: + + + + Cancel + لغو کردن + + + + OK + پذیرفتن + + + %1 files + %1 پرونده + + + + SideBar + + + Open + باز کردن + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + مدیر پرونده + + + diff --git a/filemanager/translations/fi_FI.ts b/filemanager/translations/fi_FI.ts new file mode 100644 index 0000000..9260f3d --- /dev/null +++ b/filemanager/translations/fi_FI.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Uusi kansion nimi + + + + New folder + Uusi kansio + + + + Cancel + Peruuta + + + + OK + OK + + + + DateHelper + + + Now + Nyt + + + + 1 minute ago + 1 minuutti sitten + + + + %1 minutes ago + %1 minuuttia sitten + + + + 1 hour ago + 1 tunti sitten + + + + %1 hours ago + %1 tuntia sitten + + + + 1 day ago + 1 päivä sitten + + + + %1 days ago + %1 päivää sitten + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + Peruuta + + + + + Delete + Poista + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Peruuta + + + + Delete + Poista + + + + DesktopView + + + Desktop + Työpöytä + + + + EmptyTrashDialog + + + File Manager + Tiedostoselain + + + + Do you want to permanently delete all files from the Trash? + Haluatko poistaa kaikki tiedostot pysyvästi Roskakorista? + + + + Cancel + Peruuta + + + + Empty Trash + Tyhjennä roskakori + + + + FilePropertiesDialog + + + Properties + Ominaisuudet + + + + %1 files + %1 tiedostoa + + + + FolderModel + + + %1 item + %1 kohde + + + + %1 items + %1 kohdetta + + + + The file or folder %1 does not exist. + + + + + Select All + Valitse kaikki + + + File Manager + Tiedostoselain + + + + Open + Avaa + + + + Open with + + + + + Cut + Leikkaa + + + + Copy + Kopioi + + + + Paste + Liitä + + + + + New Folder + Uusi kansio + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Siirrä roskakoriin + + + + Empty Trash + Tyhjennä roskakori + + + + Delete + Poista + + + + Rename + Nimeä uudell. + + + + Open in Terminal + Avaa terminaalissa + + + + Set as ... + + + + + Set as Wallpaper + Aseta taustakuvaksi + + + + Set as Login Screen + + + + + Properties + Ominaisuudet + + + + Change background + Muuta tausta + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Peruuta + + + + FolderPage + + + Empty folder + Tyhjä kansio + + + + Open + Avaa + + + + + Properties + Ominaisuudet + + + + File + + + + + New Folder + Uusi kansio + + + + Quit + + + + + Edit + + + + + Select All + Valitse kaikki + + + + Cut + Leikkaa + + + + Copy + Kopioi + + + + Paste + Liitä + + + + Help + + + + + About + + + + + File Manager + Tiedostoselain + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 kohde + + + + %1 items + %1 kohdetta + + + + %1 selected + %1 valittu + + + + Empty Trash + Tyhjennä roskakori + + + + Main + + File Manager + Tiedostoselain + + + Open + Avaa + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + Peruuta + + + + Open + Avaa + + + + Open With + + + + + OptionsMenu + + + Icons + Kuvakkeet + + + + List + Lista + + + + Name + Nimi + + + + Date + Päivämäärä + + + + Type + + + + + Size + Koko + + + + PlacesModel + + + Home + Etusivu + + + + Desktop + Työpöytä + + + + Documents + Asiakirjat + + + + Downloads + Lataukset + + + + Music + Musiikki + + + + Pictures + Kuvat + + + + Videos + Videot + + + + Trash + Roskakori + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + Properties + Ominaisuudet + + + + Type: + Tyyppi: + + + + Location: + Sijainti: + + + + Size: + Koko: + + + + Calculating... + Lasketaan… + + + + Created: + Luotu: + + + + Modified: + Muutettu: + + + + Accessed: + Käytetty: + + + + Cancel + Peruuta + + + + OK + OK + + + %1 files + %1 tiedostoa + + + + SideBar + + + Open + Avaa + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Tiedostoselain + + + diff --git a/filemanager/translations/fr_FR.ts b/filemanager/translations/fr_FR.ts new file mode 100644 index 0000000..12bd30e --- /dev/null +++ b/filemanager/translations/fr_FR.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Nouveau nom de dossier + + + + New folder + Nouveau dossier + + + + Cancel + Annuler + + + + OK + OK + + + + DateHelper + + + Now + Maintenant + + + + 1 minute ago + il y a 1 minute + + + + %1 minutes ago + il y a %1 minutes + + + + 1 hour ago + il y a 1 heure + + + + %1 hours ago + il y a %1 heures + + + + 1 day ago + il y a 1 jour + + + + %1 days ago + il y a %1 jours + + + + DeleteDialog + + + Do you want to delete it permanently? + Voulez-vous le supprimer définitivement ? + + + + + Cancel + Annuler + + + + + Delete + Supprimer + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Annuler + + + + Delete + Supprimer + + + + DesktopView + + + Desktop + Bureau + + + + EmptyTrashDialog + + + File Manager + Gestionnaire de fichiers + + + + Do you want to permanently delete all files from the Trash? + Voulez-vous supprimer définitivement tous les fichiers de la corbeille ? + + + + Cancel + Annuler + + + + Empty Trash + Vider la corbeille + + + + FilePropertiesDialog + + + Properties + Propriétés + + + + %1 files + %1 fichiers + + + + FolderModel + + + %1 item + %1 élément + + + + %1 items + %1 éléments + + + + The file or folder %1 does not exist. + Le fichier ou le dossier %1 n'existe pas. + + + + Select All + Tout sélectionner + + + File Manager + Gestionnaire de fichiers + + + + Open + Ouvrir + + + + Open with + Ouvrir avec + + + + Cut + Couper + + + + Copy + Copier + + + + Paste + Coller + + + + + New Folder + Nouveau dossier + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Déplacer dans la Corbeille + + + + Empty Trash + Vider la corbeille + + + + Delete + Supprimer + + + + Rename + Renommer + + + + Open in Terminal + Ouvrir dans le terminal + + + + Set as ... + + + + + Set as Wallpaper + Définir comme fond d'écran + + + + Set as Login Screen + + + + + Properties + Propriétés + + + + Change background + Modifier l'arrière-plan + + + + Restore + Restaurer + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Annuler + + + + FolderPage + + + Empty folder + Dossier vide + + + + Open + Ouvrir + + + + + Properties + Propriétés + + + + File + Fichier + + + + New Folder + Nouveau dossier + + + + Quit + Quitter + + + + Edit + Modifier + + + + Select All + Tout sélectionner + + + + Cut + Couper + + + + Copy + Copier + + + + Paste + Coller + + + + Help + Aide + + + + About + À propos + + + + File Manager + Gestionnaire de fichiers + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 élément + + + + %1 items + %1 éléments + + + + %1 selected + %1 sélectionnés + + + + Empty Trash + Vider la corbeille + + + + Main + + File Manager + Gestionnaire de fichiers + + + Open + Ouvrir + + + + OpenWithDialog + + + No applications + Aucune application + + + + Set as default + Définir comme par défaut + + + + Cancel + Annuler + + + + Open + Ouvrir + + + + Open With + Ouvrir avec + + + + OptionsMenu + + + Icons + Icônes + + + + List + Liste + + + + Name + Nom + + + + Date + Date + + + + Type + Type + + + + Size + Taille + + + + PlacesModel + + + Home + Accueil + + + + Desktop + Bureau + + + + Documents + Documents + + + + Downloads + Téléchargements + + + + Music + Musique + + + + Pictures + Images + + + + Videos + Vidéos + + + + Trash + Corbeille + + + + + Drives + Disques + + + + Computer + + + + + PropertiesDialog + + Properties + Propriétés + + + + Type: + Type : + + + + Location: + Emplacement : + + + + Size: + Taille : + + + + Calculating... + Calcul… + + + + Created: + Créé le : + + + + Modified: + Modifié le : + + + + Accessed: + Accès le : + + + + Cancel + Annuler + + + + OK + OK + + + %1 files + %1 fichiers + + + + SideBar + + + Open + Ouvrir + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Gestionnaire de fichiers + + + diff --git a/filemanager/translations/he_IL.ts b/filemanager/translations/he_IL.ts new file mode 100644 index 0000000..a5b5ce5 --- /dev/null +++ b/filemanager/translations/he_IL.ts @@ -0,0 +1,716 @@ + + + + + CreateFolderDialog + + + New folder name + שם תיקייה חדשה + + + + New folder + תיקייה חדשה + + + + Cancel + ביטול + + + + OK + אישור + + + + DateHelper + + + Now + עכשיו + + + + 1 minute ago + לפני דקה + + + + %1 minutes ago + לפני %1 דקות + + + + 1 hour ago + לפני שעה + + + + %1 hours ago + לפני %1 שעות + + + + 1 day ago + לפני יום אחד + + + + %1 days ago + לפני %1 ימים + + + + DeleteDialog + + + Do you want to delete it permanently? + האם ברצונך למחוק אותו לצמיתות? + + + + + Cancel + ביטול + + + + + Delete + מחק + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + ביטול + + + + Delete + מחק + + + + DesktopView + + + Desktop + שולחן העבודה + + + + EmptyTrashDialog + + + File Manager + מנהל הקבצים + + + + Do you want to permanently delete all files from the Trash? + האם אתה בטוח כי ברצונך למחוק לצמיתות את כל הקבצים בפח האשפה? + + + + Cancel + ביטול + + + + Empty Trash + רוקן את פח האשפה + + + + FilePropertiesDialog + + + Properties + מאפיינים + + + + %1 files + %1 קבצים + + + + FolderModel + + + %1 item + פריט אחד + + + + %1 items + %1 פריטים + + + + The file or folder %1 does not exist. + הקובץ או התיקייה %1 לא קיימת. + + + + Select All + בחר הכל + + + File Manager + מנהל הקבצים + + + + Open + פתח + + + + Open with + פתח באמצעות + + + + Cut + גזור + + + + Copy + העתק + + + + Paste + הדבק + + + + + New Folder + תיקייה חדשה + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + העבר לאשפה + + + + Empty Trash + רוקן את פח האשפה + + + + Delete + מחק + + + + Rename + שנה שם + + + + Open in Terminal + פתח בשורת הפקודות + + + + Set as ... + + + + + Set as Wallpaper + קבע כרקע שולחן העבודה + + + + Set as Login Screen + + + + + Properties + מאפיינים + + + + Change background + שנה רקע + + + + Restore + שחזר + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + ביטול + + + + FolderPage + + + Empty folder + מחק את הקבצים בתיקייה + + + + Open + פתח + + + + + Properties + מאפיינים + + + + File + קובץ + + + + New Folder + קובץ חדש + + + + Quit + יציאה + + + + Edit + ערוך + + + + Select All + בחר הכל + + + + Cut + גזור + + + + Copy + העתק + + + + Paste + הדבק + + + + Help + עזרה + + + + About + אודות + + + + File Manager + מנהל הקבצים + + + + A file manager designed for LingmoOS. + + + + + %1 item + פריט אחד + + + + %1 items + %1 פריטים + + + + %1 selected + %1 נבחרו + + + + Empty Trash + רוקן את פח האשפה + + + + Main + + File Manager + מנהל הקבצים + + + Open + פתח + + + + OpenWithDialog + + + No applications + אין אפליקציות + + + + Set as default + קבע כברירת מחדל + + + + Cancel + ביטול + + + + Open + פתח + + + + Open With + פתח באמצעות + + + + OptionsMenu + + + Icons + אייקונים + + + + List + רשימה + + + + Name + שם + + + + Date + תאריך + + + + Type + סוג + + + + Size + גודל + + + + PlacesModel + + + Home + בית + + + + Desktop + שולחן העבודה + + + + Documents + מסמכים + + + + Downloads + הורדות + + + + Music + מוזיקה + + + + Pictures + תמונות + + + + Videos + סרטונים + + + + Trash + פח האשפה + + + + + Drives + כוננים + + + + Computer + + + + + PropertiesDialog + + + Type: + סוג: + + + + Location: + מיקום: + + + + Size: + גודל: + + + + Calculating... + מחשב... + + + + Created: + תאריך יצירה: + + + + Modified: + תאריך שינוי: + + + + Accessed: + פעם אחרונה נפתח: + + + + Cancel + ביטול + + + + OK + אישור + + + + SideBar + + + Open + פתח + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + מנהל הקבצים + + + diff --git a/filemanager/translations/hi_IN.ts b/filemanager/translations/hi_IN.ts new file mode 100644 index 0000000..ccaa327 --- /dev/null +++ b/filemanager/translations/hi_IN.ts @@ -0,0 +1,716 @@ + + + + + CreateFolderDialog + + + New folder name + नया फ़ोल्डर का नाम + + + + New folder + नया फोल्डर + + + + Cancel + निरस्त करें + + + + OK + ठीक + + + + DateHelper + + + Now + अभी + + + + 1 minute ago + 1 मिनट पहले + + + + %1 minutes ago + %1 मिनट पहले + + + + 1 hour ago + 1 घंटा पहले + + + + %1 hours ago + %1 घंटा पहले + + + + 1 day ago + 1 दिन पहले + + + + %1 days ago + %1 दिन पहले + + + + DeleteDialog + + + Do you want to delete it permanently? + क्या आप इसे स्थायी रूप से मिटाना चाहते हैं? + + + + + Cancel + निरस्त करें + + + + + Delete + मिटाये + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + निरस्त करें + + + + Delete + मिटाये + + + + DesktopView + + + Desktop + डेस्कटॉप + + + + EmptyTrashDialog + + + File Manager + फ़ाइल प्रबंधक + + + + Do you want to permanently delete all files from the Trash? + क्या आप ट्रैश से सभी फ़ाइलें स्थायी रूप से मिटाना चाहते हैं? + + + + Cancel + निरस्त करें + + + + Empty Trash + ट्रैश खाली करें + + + + FilePropertiesDialog + + + Properties + गुण + + + + %1 files + %1 फ़ाइलें + + + + FolderModel + + + %1 item + %1 वस्तु + + + + %1 items + %1 वस्तुये + + + + The file or folder %1 does not exist. + फ़ाइल या फ़ोल्डर %1 मौजूद नहीं है। + + + + Select All + सब चुने + + + File Manager + फ़ाइल प्रबंधक + + + + Open + खोले + + + + Open with + अन्य अनुप्रयोग में खोले + + + + Cut + कट करना + + + + Copy + प्रतिलिपि बनाना + + + + Paste + (पेस्ट) यहाँ रखे + + + + + New Folder + नया फोल्डर + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + ट्रैश में भेजो + + + + Empty Trash + ट्रैश खाली करो + + + + Delete + + + + + Rename + मिटाये + + + + Open in Terminal + टर्मिनल में खोलें + + + + Set as ... + + + + + Set as Wallpaper + वॉलपेपर के रूप में सेट + + + + Set as Login Screen + + + + + Properties + गुण + + + + Change background + बैकग्राउंड बदलें + + + + Restore + लौटाए + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + निरस्त करें + + + + FolderPage + + + Empty folder + फ़ोल्डर खाली करे + + + + Open + खोले + + + + + Properties + गुण + + + + File + फ़ाइल + + + + New Folder + नया फोल्डर + + + + Quit + बंद करे + + + + Edit + संपादित करें + + + + Select All + सब चुने + + + + Cut + कट करें + + + + Copy + कापी करें + + + + Paste + (पेस्ट) यहाँ रखे + + + + Help + मदद + + + + About + बारे में + + + + File Manager + फ़ाइल प्रबंधक + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 वस्तु + + + + %1 items + %1 वस्तुए + + + + %1 selected + %1 चुने हुए + + + + Empty Trash + कचरा (ट्रैश) खाली करें + + + + Main + + File Manager + फ़ाइल प्रबंधक + + + Open + खोले + + + + OpenWithDialog + + + No applications + कोई अनुप्रयोग (एप्लीकेशन) नहीं + + + + Set as default + डिफाल्ट के रूप में सेट + + + + Cancel + निरस्त करें + + + + Open + खोले + + + + Open With + अन्य अनुप्रयोग (एप्लीकेशन) में खोले + + + + OptionsMenu + + + Icons + चिह्न + + + + List + सूची + + + + Name + नाम + + + + Date + दिनांक + + + + Type + प्रकार + + + + Size + आकार + + + + PlacesModel + + + Home + होम + + + + Desktop + डेस्कटॉप + + + + Documents + डाक्यूमेंट + + + + Downloads + डाउनलोड + + + + Music + संगीत + + + + Pictures + चित्र + + + + Videos + वीडियो + + + + Trash + ट्रैश + + + + + Drives + ड्राइव + + + + Computer + + + + + PropertiesDialog + + + Type: + प्रकार: + + + + Location: + स्थान: + + + + Size: + आकार: + + + + Calculating... + परिकलन जारी है... + + + + Created: + बनने का समय: + + + + Modified: + संसोधन का समय: + + + + Accessed: + इस्तेमाल का समय: + + + + Cancel + निरस्त करें + + + + OK + ठीक + + + + SideBar + + + Open + खोले + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + फ़ाइल प्रबंधक + + + diff --git a/filemanager/translations/hu_HU.ts b/filemanager/translations/hu_HU.ts new file mode 100644 index 0000000..f343224 --- /dev/null +++ b/filemanager/translations/hu_HU.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Új mappa neve + + + + New folder + Új mappa + + + + Cancel + Mégsem + + + + OK + OK + + + + DateHelper + + + Now + Most + + + + 1 minute ago + 1 perccel ezelőtt + + + + %1 minutes ago + %1 perccel ezelőtt + + + + 1 hour ago + 1 órával ezelőtt + + + + %1 hours ago + %1 órával ezelőtt + + + + 1 day ago + 1 nappal ezelőtt + + + + %1 days ago + %1 nappal ezelőtt + + + + DeleteDialog + + + Do you want to delete it permanently? + Végleg törölni szeretné? + + + + + Cancel + Mégsem + + + + + Delete + Törlés + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Mégsem + + + + Delete + Törlés + + + + DesktopView + + + Desktop + Asztal + + + + EmptyTrashDialog + + + File Manager + Fájlkezelő + + + + Do you want to permanently delete all files from the Trash? + Végleg törölni szeretne minden fájlt a Kukából? + + + + Cancel + Mégsem + + + + Empty Trash + Kuka ürítése + + + + FilePropertiesDialog + + + Properties + Tulajdonságok + + + + %1 files + %1 fájl + + + + FolderModel + + + %1 item + %1 elem + + + + %1 items + %1 elem(ek) + + + + The file or folder %1 does not exist. + A %1 fájl vagy mappa nem létezik. + + + + Select All + Összes kijelölése + + + File Manager + Fájlkezelő + + + + Open + Megnyitás + + + + Open with + Megnyitás ezzel + + + + Cut + Kivágás + + + + Copy + Másolás + + + + Paste + Beillesztés + + + + + New Folder + Új mappa + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Áthelyezés a Kukába + + + + Empty Trash + Kuka ürítése + + + + Delete + Törlés + + + + Rename + Átnevezés + + + + Open in Terminal + Megnyitás a Terminálban + + + + Set as ... + + + + + Set as Wallpaper + Beállítás háttérképként + + + + Set as Login Screen + + + + + Properties + Tulajdonságok + + + + Change background + Háttér megváltoztatása + + + + Restore + Visszaállítás + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Mégsem + + + + FolderPage + + + Empty folder + Üres mappa + + + + Open + Megnyitás + + + + + Properties + Tulajdonságok + + + + File + Fájl + + + + New Folder + Új mappa + + + + Quit + Kilépés + + + + Edit + Szerkesztés + + + + Select All + Összes kijelölése + + + + Cut + Kivágás + + + + Copy + Másolás + + + + Paste + Beillesztés + + + + Help + Segítség + + + + About + Rólunk + + + + File Manager + Fájlkezelő + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 elem + + + + %1 items + %1 elem(ek) + + + + %1 selected + %1 kiválasztva + + + + Empty Trash + Kuka kiürítése + + + + Main + + File Manager + Fájlkezelő + + + Open + Megnyitás + + + + OpenWithDialog + + + No applications + Nincsenek alkalmazások + + + + Set as default + Beállítás alapértelmezettként + + + + Cancel + Mégsem + + + + Open + Megnyitás + + + + Open With + Megnyitás ezzel + + + + OptionsMenu + + + Icons + Ikonok + + + + List + Lista + + + + Name + Név + + + + Date + Dátum + + + + Type + Típus + + + + Size + Méret + + + + PlacesModel + + + Home + Saját mappa + + + + Desktop + Asztal + + + + Documents + Dokumentumok + + + + Downloads + Letöltések + + + + Music + Zene + + + + Pictures + Képek + + + + Videos + Videók + + + + Trash + Kuka + + + + + Drives + Meghajtók + + + + Computer + + + + + PropertiesDialog + + Properties + Tulajdonságok + + + + Type: + Típus: + + + + Location: + Hely: + + + + Size: + Méret: + + + + Calculating... + Számítás... + + + + Created: + Létrehozva: + + + + Modified: + Módosítva: + + + + Accessed: + Hozzáférés: + + + + Cancel + Mégsem + + + + OK + OK + + + %1 files + %1 fájl + + + + SideBar + + + Open + Megnyitás + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Fájlkezelő + + + diff --git a/filemanager/translations/id_ID.ts b/filemanager/translations/id_ID.ts new file mode 100644 index 0000000..008d43f --- /dev/null +++ b/filemanager/translations/id_ID.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Nama folder baru + + + + New folder + Folder baru + + + + Cancel + Batal + + + + OK + OK + + + + DateHelper + + + Now + Sekarang + + + + 1 minute ago + 1 menit yang lalu + + + + %1 minutes ago + %1 menit yang lalu + + + + 1 hour ago + 1 jam yang lalu + + + + %1 hours ago + %1 jam yang lalu + + + + 1 day ago + 1 hari yang lalu + + + + %1 days ago + %1 hari yang lalu + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + Batal + + + + + Delete + Hapus + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Batal + + + + Delete + Hapus + + + + DesktopView + + + Desktop + Desktop + + + + EmptyTrashDialog + + + File Manager + Manajer Berkas + + + + Do you want to permanently delete all files from the Trash? + Apakah Anda ingin menghapus semua file secara permanen dari Sampah? + + + + Cancel + Batal + + + + Empty Trash + Sampah Kosong + + + + FilePropertiesDialog + + + Properties + Properti + + + + %1 files + %1 berkas + + + + FolderModel + + + %1 item + %1 butir + + + + %1 items + %1 butir + + + + The file or folder %1 does not exist. + + + + + Select All + Pilih Semua + + + File Manager + Manajer Berkas + + + + Open + Buka + + + + Open with + + + + + Cut + Potong + + + + Copy + Salin + + + + Paste + Tempel + + + + + New Folder + Folder Baru + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Pindahkan ke Sampah + + + + Empty Trash + Sampah Kosong + + + + Delete + Hapus + + + + Rename + Ubah Nama + + + + Open in Terminal + Buka di Terminal + + + + Set as ... + + + + + Set as Wallpaper + Pasang sebagai Wallpaper + + + + Set as Login Screen + + + + + Properties + Properti + + + + Change background + Ubah latar belakang + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Batal + + + + FolderPage + + + Empty folder + Folder kosong + + + + Open + Buka + + + + + Properties + Properti + + + + File + + + + + New Folder + Folder Baru + + + + Quit + + + + + Edit + + + + + Select All + Pilih Semua + + + + Cut + Potong + + + + Copy + Salin + + + + Paste + Tempel + + + + Help + + + + + About + + + + + File Manager + Manajer Berkas + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 butir + + + + %1 items + %1 butir + + + + %1 selected + %1 terpilih + + + + Empty Trash + Sampah Kosong + + + + Main + + File Manager + Manajer Berkas + + + Open + Buka + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + Batal + + + + Open + Buka + + + + Open With + + + + + OptionsMenu + + + Icons + Ikon + + + + List + Daftar + + + + Name + Nama + + + + Date + Tanggal + + + + Type + + + + + Size + Ukuran + + + + PlacesModel + + + Home + Rumah + + + + Desktop + Desktop + + + + Documents + Dokumen + + + + Downloads + Unduhan + + + + Music + Musik + + + + Pictures + Gambar + + + + Videos + Video + + + + Trash + Sampah + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + Properties + Properti + + + + Type: + Tipe: + + + + Location: + Lokasi: + + + + Size: + Ukuran: + + + + Calculating... + Menghitung... + + + + Created: + Dibuat: + + + + Modified: + Diubah: + + + + Accessed: + Diakses: + + + + Cancel + Batal + + + + OK + OK + + + %1 files + %1 berkas + + + + SideBar + + + Open + Buka + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Manajer Berkas + + + diff --git a/filemanager/translations/ie.ts b/filemanager/translations/ie.ts new file mode 100644 index 0000000..1544da4 --- /dev/null +++ b/filemanager/translations/ie.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Nómine del nov fólder + + + + New folder + Nov fólder + + + + Cancel + Anullar + + + + OK + OK + + + + DateHelper + + + Now + Nu + + + + 1 minute ago + ante 1 minute + + + + %1 minutes ago + ante %1 minutes + + + + 1 hour ago + ante 1 hor + + + + %1 hours ago + ante %1 hores + + + + 1 day ago + ante 1 die + + + + %1 days ago + ante %1 dies + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + Anullar + + + + + Delete + Remover + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Anullar + + + + Delete + Remover + + + + DesktopView + + + Desktop + Pupitre + + + + EmptyTrashDialog + + + File Manager + Gerente de files + + + + Do you want to permanently delete all files from the Trash? + Esque vu vole remover permanentmen omni files ex li Paper-corb? + + + + Cancel + Anullar + + + + Empty Trash + Vacuar li Paper-corb + + + + FilePropertiesDialog + + + Properties + Proprietás + + + + %1 files + %1 files + + + + FolderModel + + + %1 item + %1 element + + + + %1 items + %1 elementes + + + + The file or folder %1 does not exist. + + + + + Select All + Selecter omnicos + + + File Manager + Gerente de files + + + + Open + Aperter + + + + Open with + + + + + Cut + Exciser + + + + Copy + Copiar + + + + Paste + Collar + + + + + New Folder + Crear un fólder + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Mover al Paper-corb + + + + Empty Trash + Vacuar li Paper-corb + + + + Delete + Remover + + + + Rename + Renominar + + + + Open in Terminal + Aperter in li terminale + + + + Set as ... + + + + + Set as Wallpaper + Assignar quam tapete + + + + Set as Login Screen + + + + + Properties + Proprietás + + + + Change background + Cambiar li funde + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Anullar + + + + FolderPage + + + Empty folder + Vacui fólder + + + + Open + Aperter + + + + + Properties + Proprietás + + + + File + + + + + New Folder + Crear un fólder + + + + Quit + + + + + Edit + + + + + Select All + Selecter omnicos + + + + Cut + Exciser + + + + Copy + Copiar + + + + Paste + Collar + + + + Help + + + + + About + + + + + File Manager + Gerente de files + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 element + + + + %1 items + %1 elementes + + + + %1 selected + %1 selectet + + + + Empty Trash + Vacuar li Paper-corb + + + + Main + + File Manager + Gerente de files + + + Open + Aperter + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + Anullar + + + + Open + Aperter + + + + Open With + + + + + OptionsMenu + + + Icons + Icones + + + + List + Liste + + + + Name + Nómine + + + + Date + Date + + + + Type + + + + + Size + Grandore + + + + PlacesModel + + + Home + Hem-fólder + + + + Desktop + Pupitre + + + + Documents + Documentes + + + + Downloads + Descargates + + + + Music + Musica + + + + Pictures + Images + + + + Videos + Videos + + + + Trash + Paper-corb + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + Properties + Proprietás + + + + Type: + Tip: + + + + Location: + Localisation: + + + + Size: + Grandore: + + + + Calculating... + Calculante... + + + + Created: + Creat: + + + + Modified: + Modificat: + + + + Accessed: + Accessat: + + + + Cancel + Anullar + + + + OK + OK + + + %1 files + %1 files + + + + SideBar + + + Open + Aperter + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Gerente de files + + + diff --git a/filemanager/translations/it_IT.ts b/filemanager/translations/it_IT.ts new file mode 100644 index 0000000..7ad687f --- /dev/null +++ b/filemanager/translations/it_IT.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Nuovo nome di cartella + + + + New folder + Nuova cartella + + + + Cancel + Annulla + + + + OK + OK + + + + DateHelper + + + Now + Adesso + + + + 1 minute ago + 1 minuto fa + + + + %1 minutes ago + %1 minuti fa + + + + 1 hour ago + 1 ora fa + + + + %1 hours ago + %1 ore fa + + + + 1 day ago + 1 giorno fa + + + + %1 days ago + %1 giorni fa + + + + DeleteDialog + + + Do you want to delete it permanently? + Vuoi rimuoverlo in modo permanente? + + + + + Cancel + Annulla + + + + + Delete + Elimina + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Annulla + + + + Delete + Elimina + + + + DesktopView + + + Desktop + Desktop + + + + EmptyTrashDialog + + + File Manager + Gestore di file + + + + Do you want to permanently delete all files from the Trash? + Vuoi eliminare definitivamente tutti i file dal Cestino? + + + + Cancel + Annulla + + + + Empty Trash + Svuota il Cestino + + + + FilePropertiesDialog + + + Properties + Proprietà + + + + %1 files + %1 file + + + + FolderModel + + + %1 item + %1 elemento + + + + %1 items + %1 elementi + + + + The file or folder %1 does not exist. + Il file o la cartella %1 non esiste. + + + + Select All + Seleziona tutti + + + File Manager + Gestore di file + + + + Open + Apri + + + + Open with + Apri con + + + + Cut + Taglia + + + + Copy + Copia + + + + Paste + Incolla + + + + + New Folder + Nuova cartella + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Sposta nel Cestino + + + + Empty Trash + Svuota il Cestino + + + + Delete + Elimina + + + + Rename + Rinomina + + + + Open in Terminal + Apri nel Terminale + + + + Set as ... + + + + + Set as Wallpaper + Imposta come sfondo + + + + Set as Login Screen + + + + + Properties + Proprietà + + + + Change background + Cambia lo sfondo + + + + Restore + Ripristina + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Annulla + + + + FolderPage + + + Empty folder + Cartella vuota + + + + Open + Apri + + + + + Properties + Proprietà + + + + File + File + + + + New Folder + Nuova cartella + + + + Quit + Esci + + + + Edit + Modifica + + + + Select All + Seleziona tutti + + + + Cut + Taglia + + + + Copy + Copia + + + + Paste + Incolla + + + + Help + Aiuto + + + + About + Informazioni + + + + File Manager + Gestore di file + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 elemento + + + + %1 items + %1 elementi + + + + %1 selected + %1 selezionati + + + + Empty Trash + Svuota il Cestino + + + + Main + + File Manager + Gestore di file + + + Open + Apri + + + + OpenWithDialog + + + No applications + Nessuna applicazione + + + + Set as default + Imposta come predefinito + + + + Cancel + Annulla + + + + Open + Apri + + + + Open With + Apri con + + + + OptionsMenu + + + Icons + Icone + + + + List + Lista + + + + Name + Nome + + + + Date + Data + + + + Type + Tipo + + + + Size + Dimensione + + + + PlacesModel + + + Home + Pagina principale + + + + Desktop + Desktop + + + + Documents + Documenti + + + + Downloads + Scaricamenti + + + + Music + Musica + + + + Pictures + Immagini + + + + Videos + Video + + + + Trash + Cestino + + + + + Drives + Unità + + + + Computer + + + + + PropertiesDialog + + Properties + Proprietà + + + + Type: + Tipo: + + + + Location: + Posizione: + + + + Size: + Dimensione: + + + + Calculating... + Calcolo in corso… + + + + Created: + Creato: + + + + Modified: + Modificato: + + + + Accessed: + Accesso: + + + + Cancel + Annulla + + + + OK + OK + + + %1 files + %1 file + + + + SideBar + + + Open + Apri + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Gestore di file + + + diff --git a/filemanager/translations/ja_JP.ts b/filemanager/translations/ja_JP.ts new file mode 100644 index 0000000..e6e17a5 --- /dev/null +++ b/filemanager/translations/ja_JP.ts @@ -0,0 +1,712 @@ + + + + + CreateFolderDialog + + + New folder name + 新しいフォルダ名 + + + + New folder + 新しいフォルダ + + + + Cancel + 取り消し + + + + OK + はい + + + + DateHelper + + + Now + + + + + 1 minute ago + 1分前 + + + + %1 minutes ago + %1 分前 + + + + 1 hour ago + 1 時間前 + + + + %1 hours ago + %1時間前 + + + + 1 day ago + 1日前 + + + + %1 days ago + %1日前 + + + + DeleteDialog + + + Do you want to delete it permanently? + 永久に削除しますか? + + + + + Cancel + 取り消し + + + + + Delete + 削除 + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + 取り消し + + + + Delete + 削除 + + + + DesktopView + + + Desktop + デスクトップ + + + + EmptyTrashDialog + + + File Manager + ファイルマネージャー + + + + Do you want to permanently delete all files from the Trash? + ごみ箱からすべてのファイルを永久に削除しますか? + + + + Cancel + 取り消し + + + + Empty Trash + ゴミ箱を空にする + + + + FilePropertiesDialog + + + Properties + プロパティ + + + + %1 files + % 1ファイル + + + + FolderModel + + + %1 item + %1 アイテム + + + + %1 items + %1 アイテム + + + + The file or folder %1 does not exist. + ファイルまたはフォルダ%1は存在しません。 + + + + Select All + すべて選択 + + + File Manager + ファイルマネージャ + + + + Open + 開く + + + + Open with + で開く + + + + Cut + 切り取り + + + + Copy + コピー + + + + Paste + ペースト + + + + + New Folder + 新しいフォルダ + + + + + New Text + + + + + + New Documents + + + + + Compress + 圧縮 + + + + Extract + 解凍 + + + + Extract Here + ここに解凍 + + + + Extract To... + 解凍先を指定... + + + + Select Destination + 保存先を選択 + + + + ZIP Archive + ZIP アーカイブ + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + ゴミ箱へ移動 + + + + Empty Trash + ゴミ箱を空にする + + + + Delete + 削除 + + + + Rename + 名前を変更 + + + + Open in Terminal + ターミナルで開く + + + + Set as ... + + + + + Set as Wallpaper + 壁紙として設定 + + + + Set as Login Screen + + + + + Properties + プロパティ + + + + Change background + 背景を変更 + + + + Restore + 元に戻す + + + + Show hidden files + 隠しファイルを表示 + + + + Open in new window + 新しいウィンドウで開く + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + 表示 + + + Cancel + 取り消し + + + + FolderPage + + + Empty folder + 空のフォルダー + + + + Open + 開く + + + + + Properties + プロパティ + + + + File + ファイル + + + + New Folder + 新しいフォルダ + + + + Quit + 戻す + + + + Edit + 編集 + + + + Select All + すべて選択 + + + + Cut + 切り取り + + + + Copy + コピー + + + + Paste + ペースト + + + + Help + ヘルプ + + + + About + について + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 アイテム + + + + %1 items + %1 アイテム + + + + %1 selected + %1 が選択ました + + + + Empty Trash + ゴミ箱を空にする + + + + Main + + Open + 開く + + + + OpenWithDialog + + + No applications + アプリケーションなし + + + + Set as default + 既定として設定 + + + + Cancel + 取り消し + + + + Open + 開く + + + + Open With + で開く + + + + OptionsMenu + + + Icons + アイコン + + + + List + リスト + + + + Name + 名前 + + + + Date + 日付 + + + + Type + 種類 + + + + Size + サイズ + + + + PlacesModel + + + Home + + + + + Desktop + デスクトップ + + + + Documents + 書類 + + + + Downloads + ダウンロード + + + + Music + 音楽 + + + + Pictures + ピクチャー + + + + Videos + ビデオ + + + + Trash + ゴミ箱 + + + + + Drives + ドライブ + + + + Computer + + + + + PropertiesDialog + + + Type: + 種類: + + + + Location: + 場所: + + + + Size: + サイズ: + + + + Calculating... + 計算中... + + + + Created: + 作成時間: + + + + Modified: + 変更時間: + + + + Accessed: + アクセス時間: + + + + Cancel + 取り消し + + + + OK + はい + + + + SideBar + + + Open + 開く + + + + Open in new window + 新しいウィンドウで開く + + + + Eject + 取り出し + + + + Unmount + マウント解除 + + + + main + + + File Manager + ファイルマネージャ + + + diff --git a/filemanager/translations/ko_KR.ts b/filemanager/translations/ko_KR.ts new file mode 100644 index 0000000..a431fff --- /dev/null +++ b/filemanager/translations/ko_KR.ts @@ -0,0 +1,807 @@ + + + + + + + Extract Here + 여기에 압축 풀기 + + + Extract To... + 압축 풀기 위치... + + + Select Destination + 대상 선택 + + + ZIP Archive + ZIP 압축파일 + + + TAR Archive + TAR 압축파일 + + + 7-Zip Archive + 7-Zip 압축파일 + + + Refresh + 새로 고침 + + + TAR Archive (gzip) + TAR 압축파일 (gzip) + + + TAR Archive (bzip2) + TAR 압축파일 (bzip2) + + + TAR Archive (xz) + TAR 압축파일 (xz) + + + TAR Archive (zstd) + TAR 압축파일 (zstd) + + + TAR Archive (uncompressed) + TAR 압축파일 (압축 안 됨) + + + Icon Size + 아이콘 크기 + + + Huge + 매우 큰 + + + Large + + + + Normal + 보통 + + + Small + 작은 + + + Compress + 압축하기 + + + Extract + 압축 풀기 + + + Show hidden files + 숨김 파일 표시 + + + Open in new window + 새 창에서 열기 + + + View + 보기 + + + Open + 열기 + + + Eject + 꺼내기 + + + Unmount + 마운트 해제 + + + + CreateFolderDialog + + + New folder name + + + + + New folder + + + + + Cancel + + + + + OK + + + + + DateHelper + + + Now + + + + + 1 minute ago + + + + + %1 minutes ago + + + + + 1 hour ago + + + + + %1 hours ago + + + + + 1 day ago + + + + + %1 days ago + + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + + + + + + Delete + + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + + + + + Delete + + + + + DesktopView + + + Desktop + + + + + EmptyTrashDialog + + + File Manager + + + + + Do you want to permanently delete all files from the Trash? + + + + + Cancel + + + + + Empty Trash + + + + + FilePropertiesDialog + + + Properties + + + + + %1 files + + + + + FolderModel + + + %1 item + + + + + %1 items + + + + + The file or folder %1 does not exist. + + + + + + New Folder + + + + + + New Text + + + + + Select All + + + + + + New Documents + + + + + + Refresh + 새로 고침 + + + + Extract + 압축 풀기 + + + + Extract Here + 여기에 압축 풀기 + + + + Extract To... + 압축 풀기 위치... + + + + Select Destination + 대상 선택 + + + + Compress + 압축하기 + + + + ZIP Archive + ZIP 압축파일 + + + + 7-Zip Archive + 7-Zip 압축파일 + + + + TAR Archive + TAR 압축파일 + + + + TAR Archive (gzip) + TAR 압축파일 (gzip) + + + + TAR Archive (bzip2) + TAR 압축파일 (bzip2) + + + + TAR Archive (xz) + TAR 압축파일 (xz) + + + + TAR Archive (zstd) + TAR 압축파일 (zstd) + + + + TAR Archive (uncompressed) + TAR 압축파일 (압축 안 됨) + + + + Open + 열기 + + + + Open with + + + + + Cut + + + + + Copy + + + + + Paste + + + + + Move To Trash + + + + + Empty Trash + + + + + Delete + + + + + Rename + + + + + Open in Terminal + + + + + Set as ... + + + + + Set as Wallpaper + + + + + Set as Login Screen + + + + + Properties + + + + + Change background + + + + + Restore + + + + + Show hidden files + 숨김 파일 표시 + + + + Open in new window + 새 창에서 열기 + + + + Icon Size + 아이콘 크기 + + + + Huge + 매우 큰 + + + + Large + + + + + Normal + 보통 + + + + Small + 작은 + + + + View + 보기 + + + + FolderPage + + + File + + + + + New Folder + + + + + + Properties + + + + + Quit + + + + + Edit + + + + + Select All + + + + + Cut + + + + + Copy + + + + + Paste + + + + + Help + + + + + About + + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + Empty folder + + + + + Open + 열기 + + + + %1 item + + + + + %1 items + + + + + %1 selected + + + + + Empty Trash + + + + + Main + + Open + 열기 + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + + + + + Open + 열기 + + + + Open With + + + + + OptionsMenu + + + Icons + + + + + List + + + + + Name + + + + + Date + + + + + Type + + + + + Size + + + + + PlacesModel + + + Home + + + + + Desktop + + + + + Documents + + + + + Downloads + + + + + Music + + + + + Pictures + + + + + Videos + + + + + Trash + + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + + Type: + + + + + Location: + + + + + Size: + + + + + Calculating... + + + + + Created: + + + + + Modified: + + + + + Accessed: + + + + + Cancel + + + + + OK + + + + + SideBar + + + Open + 열기 + + + + Open in new window + 새 창에서 열기 + + + + Eject + 꺼내기 + + + + Unmount + 마운트 해제 + + + + main + + + File Manager + + + + diff --git a/filemanager/translations/lt_LT.ts b/filemanager/translations/lt_LT.ts new file mode 100644 index 0000000..d650b22 --- /dev/null +++ b/filemanager/translations/lt_LT.ts @@ -0,0 +1,701 @@ + + + + + CreateFolderDialog + + + New folder name + + + + + New folder + Naujas aplankas + + + + Cancel + Atsisakyti + + + + OK + Gerai + + + + DateHelper + + + Now + Dabar + + + + 1 minute ago + + + + + %1 minutes ago + + + + + 1 hour ago + + + + + %1 hours ago + + + + + 1 day ago + + + + + %1 days ago + + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + Atsisakyti + + + + + Delete + + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Atsisakyti + + + + Delete + + + + + DesktopView + + + Desktop + + + + + EmptyTrashDialog + + + File Manager + + + + + Do you want to permanently delete all files from the Trash? + + + + + Cancel + Atsisakyti + + + + Empty Trash + + + + + FilePropertiesDialog + + + Properties + + + + + %1 files + + + + + FolderModel + + + %1 item + + + + + %1 items + + + + + The file or folder %1 does not exist. + + + + + Select All + + + + + Open + + + + + Open with + + + + + Cut + + + + + Copy + + + + + Paste + + + + + + New Folder + + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + + + + + Empty Trash + + + + + Delete + + + + + Rename + + + + + Open in Terminal + + + + + Set as ... + + + + + Set as Wallpaper + + + + + Set as Login Screen + + + + + Properties + + + + + Change background + + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Atsisakyti + + + + FolderPage + + + Empty folder + + + + + Open + + + + + + Properties + + + + + File + + + + + New Folder + + + + + Quit + + + + + Edit + + + + + Select All + + + + + Cut + + + + + Copy + + + + + Paste + + + + + Help + + + + + About + + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + %1 item + + + + + %1 items + + + + + %1 selected + + + + + Empty Trash + + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + Atsisakyti + + + + Open + + + + + Open With + + + + + OptionsMenu + + + Icons + + + + + List + + + + + Name + + + + + Date + + + + + Type + + + + + Size + + + + + PlacesModel + + + Home + + + + + Desktop + + + + + Documents + + + + + Downloads + + + + + Music + + + + + Pictures + + + + + Videos + + + + + Trash + + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + + Type: + + + + + Location: + + + + + Size: + + + + + Calculating... + + + + + Created: + + + + + Modified: + + + + + Accessed: + + + + + Cancel + Atsisakyti + + + + OK + Gerai + + + + SideBar + + + Open + + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + + + + diff --git a/filemanager/translations/lv_LV.ts b/filemanager/translations/lv_LV.ts new file mode 100644 index 0000000..d2fd89e --- /dev/null +++ b/filemanager/translations/lv_LV.ts @@ -0,0 +1,716 @@ + + + + + CreateFolderDialog + + + New folder name + Jaunās mapes nosaukums + + + + New folder + Jauna mape + + + + Cancel + Atcelt + + + + OK + OK + + + + DateHelper + + + Now + Tagad + + + + 1 minute ago + 1 minūti atpakaļ + + + + %1 minutes ago + %1 minūtes atpakaļ + + + + 1 hour ago + 1 stundu atpakaļ + + + + %1 hours ago + %1 stundas atpakaļ + + + + 1 day ago + 1 dienu atpakaļ + + + + %1 days ago + %1 dienas atpakaļ + + + + DeleteDialog + + + Do you want to delete it permanently? + Vai jūs tiešām vēlaties neatgriezeniski to izdzēst? + + + + + Cancel + Atcelt + + + + + Delete + Izdzēst + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Atcelt + + + + Delete + Izdzēst + + + + DesktopView + + + Desktop + Darbavirsma + + + + EmptyTrashDialog + + + File Manager + Failu Pārvaldnieks + + + + Do you want to permanently delete all files from the Trash? + Vai jūs tiešām vēlaties neatgriezeniski izdzēst visus failus no Atkritnes? + + + + Cancel + Atcelt + + + + Empty Trash + Iztukšot Atkritni + + + + FilePropertiesDialog + + + Properties + Rekvizīti + + + + %1 files + %1 failu + + + + FolderModel + + + %1 item + %1 vienums + + + + %1 items + %1 vienumu + + + + The file or folder %1 does not exist. + Fails vai mape %1 neeksistē. + + + + Select All + Izvēlēties Visu + + + File Manager + Failu Pārvaldnieks + + + + Open + Atvērt + + + + Open with + Atvērt ar + + + + Cut + Izgriezt + + + + Copy + Kopēt + + + + Paste + Ielīmēt + + + + + New Folder + Jauna Mape + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Pārvietot Atrkritnē + + + + Empty Trash + Iztukšot Atkritni + + + + Delete + Izdzēst + + + + Rename + Pārdēvēt + + + + Open in Terminal + Atvērt Terminālā + + + + Set as ... + + + + + Set as Wallpaper + Uzlikt kā fona bildi + + + + Set as Login Screen + + + + + Properties + Rekvizīti + + + + Change background + Izmainīt fona bildi + + + + Restore + Atjaunot + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Atcelt + + + + FolderPage + + + Empty folder + Tukša mape + + + + Open + Atvērt + + + + + Properties + Rekvizīti + + + + File + Fails + + + + New Folder + Jauna Mape + + + + Quit + Iziet + + + + Edit + Rediģēt + + + + Select All + Atlasīt Visu + + + + Cut + Izgriezt + + + + Copy + Kopēt + + + + Paste + Ielīmēt + + + + Help + Palīdzība + + + + About + Par + + + + File Manager + Failu Pārvaldnieks + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 vienums + + + + %1 items + %1 vienumu + + + + %1 selected + %1 atlasīts + + + + Empty Trash + Iztukšot Atkritni + + + + Main + + File Manager + Failu Pārvaldnieks + + + Open + Atvērt + + + + OpenWithDialog + + + No applications + Nav programmu + + + + Set as default + Uzstatīt kā noklusējuma + + + + Cancel + Atcelt + + + + Open + Atvērt + + + + Open With + Atvērt ar + + + + OptionsMenu + + + Icons + Ikonas + + + + List + Saraksts + + + + Name + Nosaukums + + + + Date + Datums + + + + Type + Tips + + + + Size + Izmērs + + + + PlacesModel + + + Home + Mājas + + + + Desktop + Darbavirsma + + + + Documents + Dokumenti + + + + Downloads + Lejupielādes + + + + Music + Mūzika + + + + Pictures + Attēli + + + + Videos + Videoklipi + + + + Trash + Atkritne + + + + + Drives + Diski + + + + Computer + + + + + PropertiesDialog + + + Type: + Tips: + + + + Location: + Atrašanās vieta: + + + + Size: + Izmērs: + + + + Calculating... + Aprēķina... + + + + Created: + Izveidots: + + + + Modified: + Modificēts: + + + + Accessed: + Piekļūts: + + + + Cancel + Atcelt + + + + OK + OK + + + + SideBar + + + Open + Atvērt + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Failu Pārvaldnieks + + + diff --git a/filemanager/translations/ml_IN.ts b/filemanager/translations/ml_IN.ts new file mode 100644 index 0000000..a0fcec3 --- /dev/null +++ b/filemanager/translations/ml_IN.ts @@ -0,0 +1,697 @@ + + + + + CreateFolderDialog + + + New folder name + + + + + New folder + + + + + Cancel + + + + + OK + + + + + DateHelper + + + Now + + + + + 1 minute ago + + + + + %1 minutes ago + + + + + 1 hour ago + + + + + %1 hours ago + + + + + 1 day ago + + + + + %1 days ago + + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + + + + + + Delete + + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + + + + + Delete + + + + + DesktopView + + + Desktop + + + + + EmptyTrashDialog + + + File Manager + + + + + Do you want to permanently delete all files from the Trash? + + + + + Cancel + + + + + Empty Trash + + + + + FilePropertiesDialog + + + Properties + + + + + %1 files + + + + + FolderModel + + + %1 item + + + + + %1 items + + + + + The file or folder %1 does not exist. + + + + + Select All + + + + + Open + + + + + Open with + + + + + Cut + + + + + Copy + + + + + Paste + + + + + + New Folder + + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + + + + + Empty Trash + + + + + Delete + + + + + Rename + + + + + Open in Terminal + + + + + Set as ... + + + + + Set as Wallpaper + + + + + Set as Login Screen + + + + + Properties + + + + + Change background + + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + + FolderPage + + + Empty folder + + + + + Open + + + + + + Properties + + + + + File + + + + + New Folder + + + + + Quit + + + + + Edit + + + + + Select All + + + + + Cut + + + + + Copy + + + + + Paste + + + + + Help + + + + + About + + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + %1 item + + + + + %1 items + + + + + %1 selected + + + + + Empty Trash + + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + + + + + Open + + + + + Open With + + + + + OptionsMenu + + + Icons + + + + + List + + + + + Name + + + + + Date + + + + + Type + + + + + Size + + + + + PlacesModel + + + Home + + + + + Desktop + + + + + Documents + + + + + Downloads + + + + + Music + + + + + Pictures + + + + + Videos + + + + + Trash + + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + + Type: + + + + + Location: + + + + + Size: + + + + + Calculating... + + + + + Created: + + + + + Modified: + + + + + Accessed: + + + + + Cancel + + + + + OK + + + + + SideBar + + + Open + + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + + + + diff --git a/filemanager/translations/nb_NO.ts b/filemanager/translations/nb_NO.ts new file mode 100644 index 0000000..a31e7d2 --- /dev/null +++ b/filemanager/translations/nb_NO.ts @@ -0,0 +1,720 @@ + + + + + CreateFolderDialog + + + New folder name + Nytt mappenavn + + + + New folder + Ny mappe + + + + Cancel + Avbryt + + + + OK + OK + + + + DateHelper + + + Now + + + + + 1 minute ago + ett minutt siden + + + + %1 minutes ago + %1 minutter siden + + + + 1 hour ago + én time siden + + + + %1 hours ago + %1 timer siden + + + + 1 day ago + en dag siden + + + + %1 days ago + %1 dager siden + + + + DeleteDialog + + + Do you want to delete it permanently? + Ønsker du å slette for godt? + + + + + Cancel + Avbryt + + + + + Delete + Slett + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Avbryt + + + + Delete + Slett + + + + DesktopView + + + Desktop + Skrivebord + + + + EmptyTrashDialog + + + File Manager + Filbehandler + + + + Do you want to permanently delete all files from the Trash? + Slett alle filer i papirkurven for godt? + + + + Cancel + Avbryt + + + + Empty Trash + Tøm papirkurv + + + + FilePropertiesDialog + + + Properties + Egenskaper + + + + %1 files + %1 filer + + + + FolderModel + + + %1 item + %1 element + + + + %1 items + %1 elementer + + + + The file or folder %1 does not exist. + Filen eller mappen «%1» finnes ikke. + + + + Select All + Velg alle + + + File Manager + Filbehandler + + + + Open + Åpne + + + + Open with + Åpne med + + + + Cut + Klipp ut + + + + Copy + Kopier + + + + Paste + Lim inn + + + + + New Folder + Ny mappe + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Flytt til papirkurv + + + + Empty Trash + Tøm papirkurv + + + + Delete + Slett + + + + Rename + Gi nytt navn + + + + Open in Terminal + Åpne i terminal + + + + Set as ... + + + + + Set as Wallpaper + Sett som bakgrunnsbilde + + + + Set as Login Screen + + + + + Properties + Egenskaper + + + + Change background + Endre bakgrunn + + + + Restore + Gjenopprett + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Avbryt + + + + FolderPage + + + Empty folder + Tom mappe + + + + Open + Åpne + + + + + Properties + Egenskaper + + + + File + Fil + + + + New Folder + Ny mappe + + + + Quit + Avslutt + + + + Edit + Rediger + + + + Select All + Velg alle + + + + Cut + Klipp ut + + + + Copy + Kopier + + + + Paste + Lim inn + + + + Help + Hjelp + + + + About + Om + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 element + + + + %1 items + %1 elementer + + + + %1 selected + %1 valgt + + + + Empty Trash + Tøm papirkurv + + + + Main + + Open + Åpne + + + + OpenWithDialog + + + No applications + Ingen programmer + + + + Set as default + Sett som forvalg + + + + Cancel + Avbryt + + + + Open + Åpne + + + + Open With + Åpne med + + + + OptionsMenu + + + Icons + Ikoner + + + + List + Liste + + + + Name + Navn + + + + Date + Dato + + + + Type + Type + + + + Size + Størrelse + + + + PlacesModel + + + Home + Hjem + + + + Desktop + Skrivebord + + + + Documents + Dokumenter + + + + Downloads + Nedlastinger + + + + Music + Musikk + + + + Pictures + Bilder + + + + Videos + Videoer + + + + Trash + Papirkurv + + + + + Drives + Disker + + + + Computer + + + + + PropertiesDialog + + Properties + Egenskaper + + + + Type: + Type: + + + + Location: + Plassering: + + + + Size: + Størrelse: + + + + Calculating... + Regner ut … + + + + Created: + Opprettet: + + + + Modified: + Endret: + + + + Accessed: + Brukt: + + + + Cancel + Avbryt + + + + OK + OK + + + %1 files + %1 filer + + + + SideBar + + + Open + Åpne + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + FIlbehandler + + + diff --git a/filemanager/translations/ne_NP.ts b/filemanager/translations/ne_NP.ts new file mode 100644 index 0000000..3a29649 --- /dev/null +++ b/filemanager/translations/ne_NP.ts @@ -0,0 +1,716 @@ + + + + + CreateFolderDialog + + + New folder name + नयाँ फोल्डर नाम + + + + New folder + नयाँ फोल्डर + + + + Cancel + रद्द + + + + OK + हुन्छ + + + + DateHelper + + + Now + अहिले + + + + 1 minute ago + 1 मिनेटअघि + + + + %1 minutes ago + %1 मिनेटअघि + + + + 1 hour ago + 1 घन्टा अघि + + + + %1 hours ago + %1 घन्टा अघि + + + + 1 day ago + 1 दिन अघि + + + + %1 days ago + %1 दिन अघि + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + रद्द + + + + + Delete + हटाउने + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + रद्द + + + + Delete + हटाउने + + + + DesktopView + + + Desktop + डेस्कटप + + + + EmptyTrashDialog + + + File Manager + फाइल सम्पादक + + + + Do you want to permanently delete all files from the Trash? + के सबै हटाउन चाहनुहुन्छ ? + + + + Cancel + रद्द + + + + Empty Trash + रद्दी खाली गर्ने + + + + FilePropertiesDialog + + + Properties + स्वामित्व + + + + %1 files + %1 फाइल हरु + + + + FolderModel + + + %1 item + %1 वस्तु + + + + %1 items + %1 वस्तुहरु + + + + The file or folder %1 does not exist. + + + + + Select All + सबै चयन + + + + Open + खोल्ने + + + + Open with + + + + + Cut + रित्याएर प्रतिलिपी + + + + Copy + प्रतिलिपि + + + + Paste + टाँस्ने + + + + + New Folder + नयाँ फोल्डर + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + रद्दी टोकरी मा सार्ने + + + + Empty Trash + रद्दी टोकरी खाली गर्ने + + + + Delete + हटाउने + + + + Rename + पुन:नामाकरण + + + + Open in Terminal + टर्मिनल मा खोल्ने + + + + Set as ... + + + + + Set as Wallpaper + वलपेपर लगाउने + + + + Set as Login Screen + + + + + Properties + स्वामित्व + + + + Change background + पृष्ठभुमि बदल्ने + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + रद्द + + + + FolderPage + + + Empty folder + फोल्डर खाली छ + + + + Open + खोल्ने + + + + + Properties + स्वामित्व + + + + File + + + + + New Folder + नयाँ फोल्डर + + + + Quit + + + + + Edit + + + + + Select All + सबै चयन + + + + Cut + रित्याएर प्रतिलिपी + + + + Copy + प्रतिलिपि + + + + Paste + टाँस्ने + + + + Help + + + + + About + + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 वस्तु + + + + %1 items + %1 वस्तुहरु + + + + %1 selected + %1 चयन गरियो + + + + Empty Trash + रद्दी टोकरी खाली गर्ने + + + + Main + + Open + खोल्ने + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + रद्द + + + + Open + खोल्ने + + + + Open With + + + + + OptionsMenu + + + Icons + आइकनहरु + + + + List + सुची + + + + Name + नाम + + + + Date + मिति + + + + Type + + + + + Size + आकार + + + + PlacesModel + + + Home + गृह + + + + Desktop + डेस्क्टप + + + + Documents + कागजात + + + + Downloads + डाउनलोड + + + + Music + संगीत + + + + Pictures + तस्विरहरु + + + + Videos + भिडियो हरु + + + + Trash + रद्दी टोकरि + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + Properties + स्वामित्व + + + + Type: + प्रकार: + + + + Location: + स्थान: + + + + Size: + आकार: + + + + Calculating... + हिसाब गर्दै...... + + + + Created: + निर्मित: + + + + Modified: + बदलिएको: + + + + Accessed: + पँहुच भएको: + + + + Cancel + रद्द + + + + OK + हुन्छ + + + %1 files + %1 फाइल हरु + + + + SideBar + + + Open + खोल्ने + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + फाइल ब्यवस्थापक + + + diff --git a/filemanager/translations/pl_PL.ts b/filemanager/translations/pl_PL.ts new file mode 100644 index 0000000..832a183 --- /dev/null +++ b/filemanager/translations/pl_PL.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Nowa nazwa folderu + + + + New folder + Nowy folder + + + + Cancel + Anuluj + + + + OK + OK + + + + DateHelper + + + Now + Teraz + + + + 1 minute ago + Minutę temu + + + + %1 minutes ago + % minuty temu + + + + 1 hour ago + Godzinę temu + + + + %1 hours ago + % godziny temu + + + + 1 day ago + Dzień temu + + + + %1 days ago + % godziny temu + + + + DeleteDialog + + + Do you want to delete it permanently? + Czy chcesz go trwale usunąć? + + + + + Cancel + Anuluj + + + + + Delete + Usuń + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Anuluj + + + + Delete + Usuń + + + + DesktopView + + + Desktop + Wyświetlanie + + + + EmptyTrashDialog + + + File Manager + Menedżer plików + + + + Do you want to permanently delete all files from the Trash? + Czy na pewno chcesz permanentnie usunąć wszystkie pliki z kosza? + + + + Cancel + Anuluj + + + + Empty Trash + Opróżnij kosz + + + + FilePropertiesDialog + + + Properties + Właściwości + + + + %1 files + %1 plików + + + + FolderModel + + + %1 item + %1 rzecz + + + + %1 items + %1 rzeczy + + + + The file or folder %1 does not exist. + Plik lub folder %1 nie istnieje. + + + + Select All + Zaznacz wszystko + + + File Manager + Menedżer plików + + + + Open + Otwórz + + + + Open with + Otwórz za pomocą + + + + Cut + Wytnij + + + + Copy + Kopiuj + + + + Paste + Wklej + + + + + New Folder + Nowy folder + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Przenieś do kosza + + + + Empty Trash + Opróżnij kosz + + + + Delete + Usuń + + + + Rename + Zmień nazwę + + + + Open in Terminal + Otwórz w terminalu + + + + Set as ... + + + + + Set as Wallpaper + Ustaw jako tapetę + + + + Set as Login Screen + + + + + Properties + Właściwości + + + + Change background + Zmień tło + + + + Restore + Przywróć + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Anuluj + + + + FolderPage + + + Empty folder + Pusty folder + + + + Open + Otwórz + + + + + Properties + Właściwości + + + + File + Plik + + + + New Folder + Nowy folder + + + + Quit + Zakończ + + + + Edit + Edytuj + + + + Select All + Zaznacz wszystko + + + + Cut + Wytnij + + + + Copy + Kopiuj + + + + Paste + Wklej + + + + Help + Pomoc + + + + About + Informacje + + + + File Manager + Menedżer plików + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 rzecz + + + + %1 items + %1 rzeczy + + + + %1 selected + % zaznaczonych + + + + Empty Trash + Opróżnij kosz + + + + Main + + File Manager + Menedżer plików + + + Open + Otwórz + + + + OpenWithDialog + + + No applications + Brak aplikacji + + + + Set as default + Ustaw jako domyślne + + + + Cancel + Anuluj + + + + Open + Otwórz + + + + Open With + Otwórz za pomocą + + + + OptionsMenu + + + Icons + Ikony + + + + List + Lista + + + + Name + Nazwa + + + + Date + Data + + + + Type + Typ + + + + Size + Rozmiar + + + + PlacesModel + + + Home + Pulpit + + + + Desktop + Pulpit + + + + Documents + Dokumenty + + + + Downloads + Pobrane + + + + Music + Muzyka + + + + Pictures + Obrazy + + + + Videos + Wideo + + + + Trash + Kosz + + + + + Drives + Dyski + + + + Computer + + + + + PropertiesDialog + + Properties + Właściwości + + + + Type: + Typ: + + + + Location: + Lokalizacja: + + + + Size: + Rozmiar: + + + + Calculating... + Przetwarzanie... + + + + Created: + Utworzone: + + + + Modified: + Zmodyfikowane: + + + + Accessed: + Odwiedzone: + + + + Cancel + Anuluj + + + + OK + OK + + + %1 files + %1 plików + + + + SideBar + + + Open + Otwórz + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Menedżer plików + + + diff --git a/filemanager/translations/pt_BR.ts b/filemanager/translations/pt_BR.ts new file mode 100644 index 0000000..3f3d4ab --- /dev/null +++ b/filemanager/translations/pt_BR.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Nome da nova pasta + + + + New folder + Nova pasta + + + + Cancel + Cancelar + + + + OK + OK + + + + DateHelper + + + Now + Agora + + + + 1 minute ago + 1 minuto atrás + + + + %1 minutes ago + %1 minutos atrás + + + + 1 hour ago + 1 hora atrás + + + + %1 hours ago + %1 horas atrás + + + + 1 day ago + 1 dia atrás + + + + %1 days ago + %1 dias atrás + + + + DeleteDialog + + + Do you want to delete it permanently? + Você deseja excluí-lo permanentemente? + + + + + Cancel + Cancelar + + + + + Delete + Excluir + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Cancelar + + + + Delete + Excluir + + + + DesktopView + + + Desktop + Área de trabalho + + + + EmptyTrashDialog + + + File Manager + Gerenciador de arquivos + + + + Do you want to permanently delete all files from the Trash? + Você deseja excluir permanentemente todos os arquivos da Lixeira? + + + + Cancel + Cancelar + + + + Empty Trash + Esvaziar Lixeira + + + + FilePropertiesDialog + + + Properties + Propriedades + + + + %1 files + 1% de arquivos + + + + FolderModel + + + %1 item + %1 item + + + + %1 items + %1 itens + + + + The file or folder %1 does not exist. + O arquivo ou pasta não existe. + + + + Select All + Selecionar tudo + + + File Manager + Gerenciador de arquivos + + + + Open + Abrir + + + + Open with + Abrir com + + + + Cut + Recortar + + + + Copy + Copiar + + + + Paste + Colar + + + + + New Folder + Nova pasta + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Mover para a Lixeira + + + + Empty Trash + Esvaziar Lixeira + + + + Delete + Excluir + + + + Rename + Renomear + + + + Open in Terminal + Abrir no Terminal + + + + Set as ... + + + + + Set as Wallpaper + Definir como papel de parede + + + + Set as Login Screen + + + + + Properties + Propriedades + + + + Change background + Mudar plano de fundo + + + + Restore + Restaurar + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Cancelar + + + + FolderPage + + + Empty folder + Esvaziar pasta + + + + Open + Abrir + + + + + Properties + Propriedades + + + + File + Arquivos + + + + New Folder + Nova pasta + + + + Quit + Sair + + + + Edit + Editar + + + + Select All + Selecionar tudo + + + + Cut + Recortar + + + + Copy + Copiar + + + + Paste + Colar + + + + Help + Ajuda + + + + About + Sobre + + + + File Manager + Gerenciador de arquivos + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 item + + + + %1 items + %1 itens + + + + %1 selected + %1 selecionado(s) + + + + Empty Trash + Esvaziar Lixeira + + + + Main + + File Manager + Gerenciador de arquivos + + + Open + Abrir + + + + OpenWithDialog + + + No applications + Sem aplicativos + + + + Set as default + Definir como padrão + + + + Cancel + Cancelar + + + + Open + Abrir + + + + Open With + Abrir com + + + + OptionsMenu + + + Icons + Ícones + + + + List + Lista + + + + Name + Nome + + + + Date + Data + + + + Type + Tipo + + + + Size + Tamanho + + + + PlacesModel + + + Home + Início + + + + Desktop + Área de Trabalho + + + + Documents + Documentos + + + + Downloads + Downloads + + + + Music + Música + + + + Pictures + Imagens + + + + Videos + Vídeos + + + + Trash + Lixeira + + + + + Drives + Drives + + + + Computer + + + + + PropertiesDialog + + Properties + Propriedades + + + + Type: + Tipo: + + + + Location: + Localização: + + + + Size: + Tamanho: + + + + Calculating... + Calculando... + + + + Created: + Criado: + + + + Modified: + Modificado: + + + + Accessed: + Acessado: + + + + Cancel + Cancelar + + + + OK + OK + + + %1 files + %1 arquivos + + + + SideBar + + + Open + Abrir + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Gerenciador de arquivos + + + diff --git a/filemanager/translations/pt_PT.ts b/filemanager/translations/pt_PT.ts new file mode 100644 index 0000000..0f9d8ff --- /dev/null +++ b/filemanager/translations/pt_PT.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Nome da nova pasta + + + + New folder + Nova pasta + + + + Cancel + Cancelar + + + + OK + Aceitar + + + + DateHelper + + + Now + Agora + + + + 1 minute ago + Há 1 minuto + + + + %1 minutes ago + Há %1 minutos + + + + 1 hour ago + Há 1 hora + + + + %1 hours ago + Há %1 horas + + + + 1 day ago + Há 1 dia + + + + %1 days ago + Há %1 dias + + + + DeleteDialog + + + Do you want to delete it permanently? + Deseja eliminá-lo permanentemente? + + + + + Cancel + Cancelar + + + + + Delete + Eliminar + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Cancelar + + + + Delete + Eliminar + + + + DesktopView + + + Desktop + Ambiente de trabalho + + + + EmptyTrashDialog + + + File Manager + Gestor de Ficheiros + + + + Do you want to permanently delete all files from the Trash? + Deseja eliminar permanentemente todos os ficheiros do Lixo? + + + + Cancel + Cancelar + + + + Empty Trash + Esvaziar Lixo + + + + FilePropertiesDialog + + + Properties + Propriedades + + + + %1 files + %1 ficheiros + + + + FolderModel + + + %1 item + %1 item + + + + %1 items + %1 itens + + + + The file or folder %1 does not exist. + O ficheiro ou pasta %1 não existe. + + + + Select All + Selecionar tudo + + + File Manager + Gestor de Ficheiros + + + + Open + Abrir + + + + Open with + Abrir com + + + + Cut + Cortar + + + + Copy + Copiar + + + + Paste + Colar + + + + + New Folder + Nova Pasta + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Mover para o Lixo + + + + Empty Trash + Esvaziar Lixo + + + + Delete + Eliminar + + + + Rename + Renomear + + + + Open in Terminal + Abrir no Terminal + + + + Set as ... + + + + + Set as Wallpaper + Definir como Papel de parede + + + + Set as Login Screen + + + + + Properties + Propriedades + + + + Change background + Mudar de fundo + + + + Restore + Restaurar + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Cancelar + + + + FolderPage + + + Empty folder + Pasta vazia + + + + Open + Abrir + + + + + Properties + Propriedades + + + + File + Ficheiro + + + + New Folder + Nova Pasta + + + + Quit + Sair + + + + Edit + Editar + + + + Select All + Selecionar tudo + + + + Cut + Cortar + + + + Copy + Copiar + + + + Paste + Colar + + + + Help + Ajuda + + + + About + Sobre + + + + File Manager + Gestor de Ficheiros + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 item + + + + %1 items + %1 itens + + + + %1 selected + %1 selecionados + + + + Empty Trash + Esvaziar Lixo + + + + Main + + File Manager + Gestor de Ficheiros + + + Open + Abrir + + + + OpenWithDialog + + + No applications + Nenhuma aplicação + + + + Set as default + Definir como padrão + + + + Cancel + Cancelar + + + + Open + Abrir + + + + Open With + Abrir com + + + + OptionsMenu + + + Icons + Ícones + + + + List + Lista + + + + Name + Nome + + + + Date + Data + + + + Type + Tipo + + + + Size + Tamanho + + + + PlacesModel + + + Home + Início + + + + Desktop + Ambiente de trabalho + + + + Documents + Documentos + + + + Downloads + Transferências + + + + Music + Música + + + + Pictures + Imagens + + + + Videos + Vídeos + + + + Trash + Lixo + + + + + Drives + Unidades + + + + Computer + + + + + PropertiesDialog + + Properties + Propriedades + + + + Type: + Tipo: + + + + Location: + Localização: + + + + Size: + Tamanho: + + + + Calculating... + A calcular... + + + + Created: + Criado: + + + + Modified: + Modificado: + + + + Accessed: + Acedido: + + + + Cancel + Cancelar + + + + OK + Aceitar + + + %1 files + %1 ficheiros + + + + SideBar + + + Open + Abrir + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Gestor de Ficheiros + + + diff --git a/filemanager/translations/ro_RO.ts b/filemanager/translations/ro_RO.ts new file mode 100644 index 0000000..5ab9d20 --- /dev/null +++ b/filemanager/translations/ro_RO.ts @@ -0,0 +1,701 @@ + + + + + CreateFolderDialog + + + New folder name + Noul nume de dosar + + + + New folder + Dosar nou + + + + Cancel + Anulare + + + + OK + Ok + + + + DateHelper + + + Now + Acum + + + + 1 minute ago + 1 minut în urmă + + + + %1 minutes ago + %1 minute în urmă + + + + 1 hour ago + + + + + %1 hours ago + + + + + 1 day ago + + + + + %1 days ago + + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + Anulare + + + + + Delete + + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Anulare + + + + Delete + + + + + DesktopView + + + Desktop + + + + + EmptyTrashDialog + + + File Manager + + + + + Do you want to permanently delete all files from the Trash? + + + + + Cancel + Anulare + + + + Empty Trash + + + + + FilePropertiesDialog + + + Properties + + + + + %1 files + + + + + FolderModel + + + %1 item + + + + + %1 items + + + + + The file or folder %1 does not exist. + + + + + Select All + + + + + Open + + + + + Open with + + + + + Cut + + + + + Copy + + + + + Paste + + + + + + New Folder + + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + + + + + Empty Trash + + + + + Delete + + + + + Rename + + + + + Open in Terminal + + + + + Set as ... + + + + + Set as Wallpaper + + + + + Set as Login Screen + + + + + Properties + + + + + Change background + + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Anulare + + + + FolderPage + + + Empty folder + + + + + Open + + + + + + Properties + + + + + File + + + + + New Folder + + + + + Quit + + + + + Edit + + + + + Select All + + + + + Cut + + + + + Copy + + + + + Paste + + + + + Help + + + + + About + + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + %1 item + + + + + %1 items + + + + + %1 selected + + + + + Empty Trash + + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + Anulare + + + + Open + + + + + Open With + + + + + OptionsMenu + + + Icons + + + + + List + + + + + Name + + + + + Date + + + + + Type + + + + + Size + + + + + PlacesModel + + + Home + + + + + Desktop + + + + + Documents + + + + + Downloads + + + + + Music + + + + + Pictures + + + + + Videos + + + + + Trash + + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + + Type: + + + + + Location: + + + + + Size: + + + + + Calculating... + + + + + Created: + + + + + Modified: + + + + + Accessed: + + + + + Cancel + Anulare + + + + OK + Ok + + + + SideBar + + + Open + + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + + + + diff --git a/filemanager/translations/ru_RU.ts b/filemanager/translations/ru_RU.ts new file mode 100644 index 0000000..4d55a56 --- /dev/null +++ b/filemanager/translations/ru_RU.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Имя новой папки + + + + New folder + Новая папка + + + + Cancel + Отмена + + + + OK + ОК + + + + DateHelper + + + Now + Сейчас + + + + 1 minute ago + 1 минуту назад + + + + %1 minutes ago + %1 минут назад + + + + 1 hour ago + 1 час назад + + + + %1 hours ago + %1 часов назад + + + + 1 day ago + 1 день назад + + + + %1 days ago + %1 дней назад + + + + DeleteDialog + + + Do you want to delete it permanently? + Вы хотите удалить его навсегда? + + + + + Cancel + Отмена + + + + + Delete + Удалить + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Отмена + + + + Delete + Удалить + + + + DesktopView + + + Desktop + Рабочий стол + + + + EmptyTrashDialog + + + File Manager + Файловый менеджер + + + + Do you want to permanently delete all files from the Trash? + Вы хотите навсегда удалить все файлы из корзины? + + + + Cancel + Отмена + + + + Empty Trash + Очистить корзину + + + + FilePropertiesDialog + + + Properties + Свойства + + + + %1 files + %1 файлов + + + + FolderModel + + + %1 item + %1 объект + + + + %1 items + %1 объектов + + + + The file or folder %1 does not exist. + Файл или папка %1 не существует. + + + + Select All + Выделить всё + + + File Manager + Файловый менеджер + + + + Open + Открыть + + + + Open with + Открыть как + + + + Cut + Вырезать + + + + Copy + Копировать + + + + Paste + Вставить + + + + + New Folder + Новая папка + + + + + New Text + Новый текст + + + + + New Documents + Новые документы + + + + Compress + Сжать + + + + Extract + Распаковать + + + + Extract Here + Распаковать здесь + + + + Extract To... + Распаковать в... + + + + Select Destination + Выберите место назначения + + + + ZIP Archive + ZIP архив + + + + TAR Archive + TAR архив + + + + 7-Zip Archive + 7-Zip архив + + + + + Refresh + Обновить + + + + TAR Archive (gzip) + TAR архив (gzip) + + + + TAR Archive (bzip2) + TAR архив (bzip2) + + + + TAR Archive (xz) + TAR архив (xz) + + + + TAR Archive (zstd) + TAR архив (zstd) + + + + TAR Archive (uncompressed) + TAR архив (без сжатия) + + + + Move To Trash + Переместить в корзину + + + + Empty Trash + Очистить корзину + + + + Delete + Удалить + + + + Rename + Переименовать + + + + Open in Terminal + Открыть в терминале + + + + Set as ... + + + + + Set as Wallpaper + Установить как обои + + + + Set as Login Screen + + + + + Properties + Свойства + + + + Change background + Изменить фон + + + + Restore + Восстановить + + + + Show hidden files + Показать скрытые файлы + + + + Open in new window + Открыть в новом окне + + + + Icon Size + Размер значков + + + + Huge + Огромный + + + + Large + Большой + + + + Normal + Обычный + + + + Small + Маленький + + + + View + Вид + + + Cancel + Отмена + + + + FolderPage + + + Empty folder + Пустая папка + + + + Open + Открыть + + + + + Properties + Свойства + + + + File + Файл + + + + New Folder + Новая папка + + + + Quit + Выйти + + + + Edit + Изменить + + + + Select All + Выделить всё + + + + Cut + Вырезать + + + + Copy + Копировать + + + + Paste + Вставить + + + + Help + Помощь + + + + About + О программе + + + + File Manager + Файловый менеджер + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 объект + + + + %1 items + %1 объектов + + + + %1 selected + %1 выделено + + + + Empty Trash + Очистить корзину + + + + Main + + File Manager + Файловый менеджер + + + Open + Открыть + + + + OpenWithDialog + + + No applications + Нет приложений + + + + Set as default + Сделать по умолчанию + + + + Cancel + Отмена + + + + Open + Открыть + + + + Open With + Открыть как + + + + OptionsMenu + + + Icons + Иконки + + + + List + Список + + + + Name + Имя + + + + Date + Дата + + + + Type + Тип + + + + Size + Размер + + + + PlacesModel + + + Home + Домашний каталог + + + + Desktop + Рабочий стол + + + + Documents + Документы + + + + Downloads + Загрузки + + + + Music + Музыка + + + + Pictures + Изображения + + + + Videos + Видео + + + + Trash + Корзина + + + + + Drives + Диски + + + + Computer + + + + + PropertiesDialog + + Properties + Свойства + + + + Type: + Тип: + + + + Location: + Размещение: + + + + Size: + Размер: + + + + Calculating... + Вычисление... + + + + Created: + Создано: + + + + Modified: + Изменено: + + + + Accessed: + Доступ: + + + + Cancel + Отмена + + + + OK + ОК + + + %1 files + %1 файлов + + + + SideBar + + + Open + Открыть + + + + Open in new window + Открыть в новом окне + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Файловый менеджер + + + diff --git a/filemanager/translations/si_LK.ts b/filemanager/translations/si_LK.ts new file mode 100644 index 0000000..433f7ff --- /dev/null +++ b/filemanager/translations/si_LK.ts @@ -0,0 +1,720 @@ + + + + + CreateFolderDialog + + + New folder name + නව බහාලුමේ නම + + + + New folder + නව බහාලුම + + + + Cancel + අවලංගු කරන්න + + + + OK + හරි + + + + DateHelper + + + Now + දැන් + + + + 1 minute ago + විනාඩි 1 කට පෙරාතුව + + + + %1 minutes ago + විනාඩි %1 කට පෙරාතුව + + + + 1 hour ago + පැය 1 කට පෙරාතුව + + + + %1 hours ago + පැය %1 කට පෙරාතුව + + + + 1 day ago + දින 1 කට පෙරාතුව + + + + %1 days ago + දින %1 කට පෙරාතුව + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + අවලංගු කරන්න + + + + + Delete + + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + අවලංගු කරන්න + + + + Delete + + + + + DesktopView + + + Desktop + + + + + EmptyTrashDialog + + + File Manager + ගොනු කළමනාකරු + + + + Do you want to permanently delete all files from the Trash? + + + + + Cancel + අවලංගු කරන්න + + + + Empty Trash + + + + + FilePropertiesDialog + + + Properties + + + + + %1 files + ගොනු %1 + + + + FolderModel + + + %1 item + + + + + %1 items + + + + + The file or folder %1 does not exist. + + + + + Select All + සියල්ල තෝරන්න + + + File Manager + ගොනු කළමනාකරු + + + + Open + විවෘත කරන්න + + + + Open with + + + + + Cut + කපන්න + + + + Copy + පිටපත් කරන්න + + + + Paste + අලවන්න + + + + + New Folder + නව බහාලුම + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + + + + + Empty Trash + + + + + Delete + + + + + Rename + නැවත නම් කරන්න + + + + Open in Terminal + අග්‍රයෙහි විවෘත කරන්න + + + + Set as ... + + + + + Set as Wallpaper + + + + + Set as Login Screen + + + + + Properties + + + + + Change background + පසුබිම වෙනස් කරන්න + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + අවලංගු කරන්න + + + + FolderPage + + + Empty folder + + + + + Open + විවෘත කරන්න + + + + + Properties + + + + + File + + + + + New Folder + නව බහාලුම + + + + Quit + + + + + Edit + + + + + Select All + සියල්ල තෝරන්න + + + + Cut + කපන්න + + + + Copy + පිටපත් කරන්න + + + + Paste + අලවන්න + + + + Help + + + + + About + + + + + File Manager + ගොනු කළමනාකරු + + + + A file manager designed for LingmoOS. + + + + + %1 item + + + + + %1 items + + + + + %1 selected + + + + + Empty Trash + + + + + Main + + File Manager + ගොනු කළමනාකරු + + + Open + විවෘත කරන්න + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + අවලංගු කරන්න + + + + Open + විවෘත කරන්න + + + + Open With + + + + + OptionsMenu + + + Icons + + + + + List + + + + + Name + නම + + + + Date + දිනය + + + + Type + + + + + Size + ප්‍රමාණය + + + + PlacesModel + + + Home + මුල + + + + Desktop + + + + + Documents + ලේඛන + + + + Downloads + බාගැනීම් + + + + Music + සංගීත + + + + Pictures + පින්තූර + + + + Videos + දෘශ්‍යක + + + + Trash + + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + + Type: + වර්ගය: + + + + Location: + ස්ථානය: + + + + Size: + ප්‍රමාණය: + + + + Calculating... + ගණනය වෙමින්... + + + + Created: + + + + + Modified: + + + + + Accessed: + + + + + Cancel + අවලංගු කරන්න + + + + OK + හරි + + + %1 files + ගොනු %1 + + + + SideBar + + + Open + විවෘත කරන්න + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + ගොනු කළමනාකරු + + + diff --git a/filemanager/translations/sk_SK.ts b/filemanager/translations/sk_SK.ts new file mode 100644 index 0000000..4df0305 --- /dev/null +++ b/filemanager/translations/sk_SK.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Názov nového priečinku + + + + New folder + Nový priečinok + + + + Cancel + Zrušiť + + + + OK + OK + + + + DateHelper + + + Now + Teraz + + + + 1 minute ago + Pred minútou + + + + %1 minutes ago + Pred %1 minútami + + + + 1 hour ago + Pred hodinou + + + + %1 hours ago + Pred %1 hodinami + + + + 1 day ago + Pred 1 dňom + + + + %1 days ago + Pred %1 dňami + + + + DeleteDialog + + + Do you want to delete it permanently? + Chcete to nenávratne vymazať? + + + + + Cancel + Zrušiť + + + + + Delete + Vymazať + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Zrušiť + + + + Delete + + + + + DesktopView + + + Desktop + Pracovná plocha + + + + EmptyTrashDialog + + + File Manager + Správca súborov + + + + Do you want to permanently delete all files from the Trash? + Chcete nenávratne vymazať všetky súbory v Koši? + + + + Cancel + Zrušiť + + + + Empty Trash + Vyprázdniť kôš + + + + FilePropertiesDialog + + + Properties + Vlastnosti + + + + %1 files + %1 súborov + + + + FolderModel + + + %1 item + %1 položka + + + + %1 items + %1 položiek + + + + The file or folder %1 does not exist. + Súbor alebo priečinok %1 neexistuje. + + + + Select All + Vybrať všetky + + + File Manager + Správca súborov + + + + Open + Otvoriť + + + + Open with + Otvoriť v + + + + Cut + Vystrihnúť + + + + Copy + Kopírovať + + + + Paste + Prilepiť + + + + + New Folder + Nový priečinok + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Presunúť do Koša + + + + Empty Trash + Vyprázdniť Kôš + + + + Delete + Odstrániť + + + + Rename + Premenovať + + + + Open in Terminal + Otvoriť v Termináli + + + + Set as ... + + + + + Set as Wallpaper + Nastaviť ako Pozadie pracovnej plochy + + + + Set as Login Screen + + + + + Properties + Vlastnosti + + + + Change background + Zmeniť pozadie + + + + Restore + Obnoviť + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Zrušiť + + + + FolderPage + + + Empty folder + Vyprázdniť priečinok + + + + Open + Otvoriť + + + + + Properties + Vlastnosti + + + + File + Súbor + + + + New Folder + Nový priečinok + + + + Quit + Skončiť + + + + Edit + Upraviť + + + + Select All + Vybrať všetko + + + + Cut + Vystrihnúť + + + + Copy + Kopírovať + + + + Paste + Prilepiť + + + + Help + Pomocník + + + + About + O aplikácii + + + + File Manager + Správca súborov + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 položka + + + + %1 items + %1 položiek + + + + %1 selected + %1 vybrané + + + + Empty Trash + Vyprázdniť kôš + + + + Main + + File Manager + Správca súborov + + + Open + Otvoriť + + + + OpenWithDialog + + + No applications + Žiadne aplikácie + + + + Set as default + Nastaviť ako predvolené + + + + Cancel + Zrušiť + + + + Open + Otvoriť + + + + Open With + Otvoriť v + + + + OptionsMenu + + + Icons + Ikony + + + + List + Zoznam + + + + Name + Názov + + + + Date + Dátum + + + + Type + Typ + + + + Size + Veľkosť + + + + PlacesModel + + + Home + Domov + + + + Desktop + Pracovná plocha + + + + Documents + Dokumenty + + + + Downloads + Prevzaté súbory + + + + Music + Hudba + + + + Pictures + Obrázky + + + + Videos + Videá + + + + Trash + Kôš + + + + + Drives + Disky + + + + Computer + + + + + PropertiesDialog + + Properties + Vlastnosti + + + + Type: + Typ súboru: + + + + Location: + Umiestnenie: + + + + Size: + Veľkosť: + + + + Calculating... + Počítanie... + + + + Created: + Vytvorený: + + + + Modified: + Upravený: + + + + Accessed: + Otvorený: + + + + Cancel + Zrušiť + + + + OK + OK + + + %1 files + %1 súbory + + + + SideBar + + + Open + Otvoriť + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Správca súborov + + + diff --git a/filemanager/translations/so.ts b/filemanager/translations/so.ts new file mode 100644 index 0000000..766d309 --- /dev/null +++ b/filemanager/translations/so.ts @@ -0,0 +1,716 @@ + + + + + CreateFolderDialog + + + New folder name + Magaca galka cusub + + + + New folder + Gal cusub + + + + Cancel + Xir + + + + OK + OK + + + + DateHelper + + + Now + Hadda + + + + 1 minute ago + 1 daqiiqo kahor + + + + %1 minutes ago + %1 daqiiqo kahor + + + + 1 hour ago + 1 saac kahor + + + + %1 hours ago + %1 saacadood kahor + + + + 1 day ago + 1 maalin kahor + + + + %1 days ago + %1 maalmood kahor + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + Xir + + + + + Delete + Tirtir + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Xir + + + + Delete + Tirtir + + + + DesktopView + + + Desktop + Kadinka + + + + EmptyTrashDialog + + + File Manager + Fayl Maamule + + + + Do you want to permanently delete all files from the Trash? + Ma hubtaa inaad si kama dambaysa u tirtirto dhammaan faylasha ku jira qashinka? + + + + Cancel + Xir + + + + Empty Trash + Qashinka Madhi + + + + FilePropertiesDialog + + + Properties + + + + + %1 files + %1 fayl + + + + FolderModel + + + %1 item + %1 walax + + + + %1 items + %1 walxood + + + + The file or folder %1 does not exist. + + + + + Select All + Dooro dhammaan + + + + Open + Fur + + + + Open with + + + + + Cut + Jar + + + + Copy + Koobbi + + + + Paste + Dhaji + + + + + New Folder + Gal Cusub + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Qashinka ku dar + + + + Empty Trash + Qashinka madhi + + + + Delete + Tirtir + + + + Rename + Magacow + + + + Open in Terminal + Kufur Terminal-ka + + + + Set as ... + + + + + Set as Wallpaper + Ku dhaji gidaarka + + + + Set as Login Screen + + + + + Properties + Astaamaha + + + + Change background + Bedel sawirka gidaarka + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Xir + + + + FolderPage + + + Empty folder + Galka madhi + + + + Open + Fur + + + + + Properties + Astaamaha + + + + File + + + + + New Folder + Gal Cusub + + + + Quit + + + + + Edit + + + + + Select All + Dooro dhammaan + + + + Cut + Jar + + + + Copy + Koobbi + + + + Paste + Dhaji + + + + Help + + + + + About + + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 walax + + + + %1 items + %1 walxood + + + + %1 selected + %1 dooratay + + + + Empty Trash + Qashinka Madhi + + + + Main + + Open + Fur + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + Xir + + + + Open + Fur + + + + Open With + + + + + OptionsMenu + + + Icons + Calaamado + + + + List + Liis + + + + Name + Magac + + + + Date + Taariikh + + + + Type + + + + + Size + Xajmiga + + + + PlacesModel + + + Home + Aqal + + + + Desktop + Kadinka + + + + Documents + Dukumiintiyada + + + + Downloads + Dejisan + + + + Music + Muusig + + + + Pictures + Sawirro + + + + Videos + Muuqaallo + + + + Trash + Qashin + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + Properties + Astaamo + + + + Type: + Nooca: + + + + Location: + Goobta: + + + + Size: + Xajmiga: + + + + Calculating... + Xisaabinayaa... + + + + Created: + La abuuray: + + + + Modified: + La bedelay: + + + + Accessed: + La furay: + + + + Cancel + Xir + + + + OK + OK + + + %1 files + %1 fayl + + + + SideBar + + + Open + Fur + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Fayl maamule + + + diff --git a/filemanager/translations/sr_RS.ts b/filemanager/translations/sr_RS.ts new file mode 100644 index 0000000..73dcb32 --- /dev/null +++ b/filemanager/translations/sr_RS.ts @@ -0,0 +1,712 @@ + + + + + CreateFolderDialog + + + New folder name + Naziv nove fascikle + + + + New folder + Nova fascikla + + + + Cancel + Otkaži + + + + OK + OK + + + + DateHelper + + + Now + Sad + + + + 1 minute ago + Pre 1 minut + + + + %1 minutes ago + Pre %1 minuta + + + + 1 hour ago + Pre 1 sat + + + + %1 hours ago + Pre %1 sati + + + + 1 day ago + Pre 1 dan + + + + %1 days ago + Pre %1 dana + + + + DeleteDialog + + + Do you want to delete it permanently? + Da li želite trajno ovo da obrišete? + + + + + Cancel + Otkaži + + + + + Delete + Obriši + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Otkaži + + + + Delete + Obriši + + + + DesktopView + + + Desktop + Radna površina + + + + EmptyTrashDialog + + + File Manager + Upravljač datoteka + + + + Do you want to permanently delete all files from the Trash? + Želite li trajno obrisati sve fajlove iz Smeća? + + + + Cancel + Otkaži + + + + Empty Trash + Isprazni smeće + + + + FilePropertiesDialog + + + Properties + Svojstva + + + + %1 files + %1 datoteka + + + + FolderModel + + + %1 item + %1 stavka + + + + %1 items + %1 stavki + + + + The file or folder %1 does not exist. + Datoteka ili fascikla %1 ne postoji. + + + + Select All + Izaberi sve + + + File Manager + Upravljač datotekama + + + + Open + Otvori + + + + Open with + Otvori pomoću + + + + Cut + Iseci + + + + Copy + Kopiraj + + + + Paste + Zalepi + + + + + New Folder + Nova fascikla + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Premesti u smeće + + + + Empty Trash + Isprazni smeće + + + + Delete + Obriši + + + + Rename + Preimenuj + + + + Open in Terminal + Otvori u terminalu + + + + Set as ... + + + + + Set as Wallpaper + Postavi kao pozadinu + + + + Set as Login Screen + + + + + Properties + Svojstva + + + + Change background + Promeni pozadinu + + + + Restore + Obnovi + + + + Show hidden files + Prikaži skrivene datoteke + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Otkaži + + + + FolderPage + + + Empty folder + Prazna fascikla + + + + Open + Otvori + + + + + Properties + Svojstva + + + + File + Datoteka + + + + New Folder + Nova fascikla + + + + Quit + Odustani + + + + Edit + Uredi + + + + Select All + Izaberi sve + + + + Cut + Iseci + + + + Copy + Kopiraj + + + + Paste + Zalepi + + + + Help + Pomoć + + + + About + O Aplikaciji + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 stavka + + + + %1 items + %1 stavki + + + + %1 selected + %1 odabrano + + + + Empty Trash + Isprazni smeće + + + + Main + + Open + Otvori + + + + OpenWithDialog + + + No applications + + + + + Set as default + Postavi kao podrazumevano + + + + Cancel + Otkaži + + + + Open + Otvori + + + + Open With + Otvori pomoću + + + + OptionsMenu + + + Icons + Ikone + + + + List + Spisak + + + + Name + Ime + + + + Date + Datum + + + + Type + Tip + + + + Size + Veličina + + + + PlacesModel + + + Home + + + + + Desktop + Radna površina + + + + Documents + Dokumenti + + + + Downloads + Preuzimanja + + + + Music + Muzika + + + + Pictures + Slike + + + + Videos + Videozapisi + + + + Trash + Smeće + + + + + Drives + Diskovi + + + + Computer + + + + + PropertiesDialog + + + Type: + Vrsta: + + + + Location: + Lokacija: + + + + Size: + Veličina: + + + + Calculating... + Računanje... + + + + Created: + Napravljeno: + + + + Modified: + Izmenjeno: + + + + Accessed: + Pristupljeno: + + + + Cancel + Otkaži + + + + OK + U redu + + + + SideBar + + + Open + Otvori + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Upravljač datotekama + + + diff --git a/filemanager/translations/sv_SE.ts b/filemanager/translations/sv_SE.ts new file mode 100644 index 0000000..a282d37 --- /dev/null +++ b/filemanager/translations/sv_SE.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Nytt mappnamn + + + + New folder + Ny mapp + + + + Cancel + Avbryt + + + + OK + OK + + + + DateHelper + + + Now + Nu + + + + 1 minute ago + 1 minut sedan + + + + %1 minutes ago + %1 minuter sedan + + + + 1 hour ago + 1 timme sedan + + + + %1 hours ago + %1 timmar sedan + + + + 1 day ago + 1 dag sedan + + + + %1 days ago + %1 dagar sedan + + + + DeleteDialog + + + Do you want to delete it permanently? + Vill du ta bort den permanent? + + + + + Cancel + Avbryt + + + + + Delete + Ta bort + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Avbryt + + + + Delete + Ta bort + + + + DesktopView + + + Desktop + Skrivbord + + + + EmptyTrashDialog + + + File Manager + Filhanterare + + + + Do you want to permanently delete all files from the Trash? + Vill du radera alla filer permanent från papperskorgen? + + + + Cancel + Avbryt + + + + Empty Trash + Töm papperskorgen + + + + FilePropertiesDialog + + + Properties + Egenskaper + + + + %1 files + %1 filer + + + + FolderModel + + + %1 item + %1 objekt + + + + %1 items + %1 objekt + + + + The file or folder %1 does not exist. + Denna fil eller katalog %1 existerar inte. + + + + Select All + Välj alla + + + File Manager + Filhanterare + + + + Open + Öppna + + + + Open with + Öppna med + + + + Cut + Klipp ut + + + + Copy + Kopiera + + + + Paste + Klistra in + + + + + New Folder + Ny mapp + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Flytta till papperskorgen + + + + Empty Trash + Tom papperskorgen + + + + Delete + Ta bort + + + + Rename + Döp om + + + + Open in Terminal + Öppna i Terminal + + + + Set as ... + + + + + Set as Wallpaper + Använd som bakgrund + + + + Set as Login Screen + + + + + Properties + Egenskaper + + + + Change background + Ändra bakgrund + + + + Restore + Återställ + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Avbryt + + + + FolderPage + + + Empty folder + Tom mapp + + + + Open + Öppna + + + + + Properties + Egenskaper + + + + File + Fil + + + + New Folder + Ny Mapp + + + + Quit + Avsluta + + + + Edit + Redigera + + + + Select All + Välj alla + + + + Cut + Klipp ut + + + + Copy + Kopiera + + + + Paste + Klistra in + + + + Help + Hjälp + + + + About + Om + + + + File Manager + Filhanterare + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 objekt + + + + %1 items + %1 objekt + + + + %1 selected + %1 valda + + + + Empty Trash + Töm papperskorgen + + + + Main + + File Manager + Filhanterare + + + Open + Öppna + + + + OpenWithDialog + + + No applications + Inga program + + + + Set as default + Ange som standard + + + + Cancel + Avbryt + + + + Open + Öppna + + + + Open With + Öppna med + + + + OptionsMenu + + + Icons + Ikoner + + + + List + Lista + + + + Name + Namn + + + + Date + Datum + + + + Type + Typ + + + + Size + Storlek + + + + PlacesModel + + + Home + Hem + + + + Desktop + Skrivbord + + + + Documents + Dokument + + + + Downloads + Hämtade filer + + + + Music + Musik + + + + Pictures + Bilder + + + + Videos + Filmer + + + + Trash + Skräp + + + + + Drives + Enheter + + + + Computer + + + + + PropertiesDialog + + Properties + Egenskaper + + + + Type: + Typ: + + + + Location: + Plats: + + + + Size: + Storlek: + + + + Calculating... + Beräknar... + + + + Created: + Skapad: + + + + Modified: + Ändrad: + + + + Accessed: + Senast öppnad: + + + + Cancel + Avbryt + + + + OK + OK + + + %1 files + %1 fil + + + + SideBar + + + Open + Öppna + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Filhanterare + + + diff --git a/filemanager/translations/sw.ts b/filemanager/translations/sw.ts new file mode 100644 index 0000000..c9ceb44 --- /dev/null +++ b/filemanager/translations/sw.ts @@ -0,0 +1,708 @@ + + + + + CreateFolderDialog + + + New folder name + Jina la folda mpya + + + + New folder + Folda mpya + + + + Cancel + Ghairi + + + + OK + Sawa + + + + DateHelper + + + Now + Sasa + + + + 1 minute ago + dakika 1 imepita + + + + %1 minutes ago + %1 dakika zimepita + + + + 1 hour ago + saa 1 imepita + + + + %1 hours ago + masaa %1 zimepita + + + + 1 day ago + Siku 1 imepita + + + + %1 days ago + Siku %1 zimepita + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + Ghairi + + + + + Delete + Futa + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Ghairi + + + + Delete + Futa + + + + DesktopView + + + Desktop + Desktop + + + + EmptyTrashDialog + + + File Manager + meneja la faili + + + + Do you want to permanently delete all files from the Trash? + Unataka kufuta kila kitu kwa Takataka? + + + + Cancel + Ghairi + + + + Empty Trash + Futa Takataka + + + + FilePropertiesDialog + + + Properties + Mali + + + + %1 files + %1 faili + + + + FolderModel + + + %1 item + %1 kitu + + + + %1 items + %1 vitu + + + + The file or folder %1 does not exist. + + + + + Select All + Chagua Zote + + + + Open + Fungua + + + + Open with + Fungua na + + + + Cut + Kata + + + + Copy + Nakala + + + + Paste + Bandika + + + + + New Folder + Folda mpya + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Weka ndani ya Takataka + + + + Empty Trash + Futa Takataka + + + + Delete + Futa + + + + Rename + Badilisha jina + + + + Open in Terminal + Fungua ndani ya Terminal + + + + Set as ... + + + + + Set as Wallpaper + Weka kama kikaratasi + + + + Set as Login Screen + + + + + Properties + Mali + + + + Change background + Badilisha kikaratasi + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Ghairi + + + + FolderPage + + + Empty folder + Folda tupu + + + + Open + Fungua + + + + + Properties + Mali + + + + File + Faili + + + + New Folder + Folda mpya + + + + Quit + Toka + + + + Edit + Badilisha + + + + Select All + Chagua zote + + + + Cut + Kata + + + + Copy + Nakala + + + + Paste + Bandika + + + + Help + Usaidizi + + + + About + Kuhusu + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 kitu + + + + %1 items + %1 vitu + + + + %1 selected + %1 imechaguliwa + + + + Empty Trash + Futa Takataka + + + + Main + + Open + Fungua + + + + OpenWithDialog + + + No applications + Hakuna programu + + + + Set as default + Weka kama kawaida + + + + Cancel + Ghairi + + + + Open + Fungua + + + + Open With + Fungua na + + + + OptionsMenu + + + Icons + Ikoni + + + + List + Orodha + + + + Name + Jina + + + + Date + Tarehe + + + + Type + + + + + Size + Ukubwa + + + + PlacesModel + + + Home + Nyumbani + + + + Desktop + Desktop + + + + Documents + Hati + + + + Downloads + Mapakuo + + + + Music + Muziki + + + + Pictures + Mapicha + + + + Videos + Mavideo + + + + Trash + Takataka + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + + Type: + Aina: + + + + Location: + Mahali: + + + + Size: + Ukubwa: + + + + Calculating... + inapiga hesabu... + + + + Created: + Imetengezwa: + + + + Modified: + Imebadilishwa: + + + + Accessed: + Imefunguliwa: + + + + Cancel + Ghairi + + + + OK + Sawa + + + + SideBar + + + Open + Fungua + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Meneja la faili + + + diff --git a/filemanager/translations/ta_IN.ts b/filemanager/translations/ta_IN.ts new file mode 100644 index 0000000..1b7cf14 --- /dev/null +++ b/filemanager/translations/ta_IN.ts @@ -0,0 +1,697 @@ + + + + + CreateFolderDialog + + + New folder name + + + + + New folder + + + + + Cancel + + + + + OK + + + + + DateHelper + + + Now + + + + + 1 minute ago + + + + + %1 minutes ago + + + + + 1 hour ago + + + + + %1 hours ago + + + + + 1 day ago + + + + + %1 days ago + + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + + + + + + Delete + + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + + + + + Delete + + + + + DesktopView + + + Desktop + + + + + EmptyTrashDialog + + + File Manager + + + + + Do you want to permanently delete all files from the Trash? + + + + + Cancel + + + + + Empty Trash + + + + + FilePropertiesDialog + + + Properties + + + + + %1 files + + + + + FolderModel + + + %1 item + + + + + %1 items + + + + + The file or folder %1 does not exist. + + + + + Select All + + + + + Open + + + + + Open with + + + + + Cut + + + + + Copy + + + + + Paste + + + + + + New Folder + + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + + + + + Empty Trash + + + + + Delete + + + + + Rename + + + + + Open in Terminal + + + + + Set as ... + + + + + Set as Wallpaper + + + + + Set as Login Screen + + + + + Properties + + + + + Change background + + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + + FolderPage + + + Empty folder + + + + + Open + + + + + + Properties + + + + + File + + + + + New Folder + + + + + Quit + + + + + Edit + + + + + Select All + + + + + Cut + + + + + Copy + + + + + Paste + + + + + Help + + + + + About + + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + %1 item + + + + + %1 items + + + + + %1 selected + + + + + Empty Trash + + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + + + + + Open + + + + + Open With + + + + + OptionsMenu + + + Icons + + + + + List + + + + + Name + + + + + Date + + + + + Type + + + + + Size + + + + + PlacesModel + + + Home + + + + + Desktop + + + + + Documents + + + + + Downloads + + + + + Music + + + + + Pictures + + + + + Videos + + + + + Trash + + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + + Type: + + + + + Location: + + + + + Size: + + + + + Calculating... + + + + + Created: + + + + + Modified: + + + + + Accessed: + + + + + Cancel + + + + + OK + + + + + SideBar + + + Open + + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + + + + diff --git a/filemanager/translations/tr_TR.ts b/filemanager/translations/tr_TR.ts new file mode 100644 index 0000000..493bb74 --- /dev/null +++ b/filemanager/translations/tr_TR.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Yeni klasör adı + + + + New folder + Yeni klasör + + + + Cancel + İptal + + + + OK + Tamam + + + + DateHelper + + + Now + Şimdi + + + + 1 minute ago + 1 dakika önce + + + + %1 minutes ago + %1 dakika önce + + + + 1 hour ago + 1 saat önce + + + + %1 hours ago + %1 saat önce + + + + 1 day ago + 1 gün önce + + + + %1 days ago + %1 gün önce + + + + DeleteDialog + + + Do you want to delete it permanently? + Kalıcı olarak silmek istediğinizden emin misiniz? + + + + + Cancel + İptal + + + + + Delete + Sil + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + İptal + + + + Delete + Sil + + + + DesktopView + + + Desktop + Masaüstü + + + + EmptyTrashDialog + + + File Manager + Dosya Yöneticisi + + + + Do you want to permanently delete all files from the Trash? + Çöp kutusundaki öğeleri kalıcı olarak silmek istediğinizden emin misiniz? + + + + Cancel + İptal + + + + Empty Trash + Çöpü Boşalt + + + + FilePropertiesDialog + + + Properties + Özellikler + + + + %1 files + %1 dosyalar + + + + FolderModel + + + %1 item + %1 öğe + + + + %1 items + %1 öğe + + + + The file or folder %1 does not exist. + Dosyanın veya dizinin %1 yok. + + + + Select All + Hepsini seç + + + File Manager + Dosya Yöneticisi + + + + Open + + + + + Open with + Birlikte aç + + + + Cut + Kes + + + + Copy + Kopyala + + + + Paste + Yapıştır + + + + + New Folder + Yeni Klasör + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Çöpe Taşı + + + + Empty Trash + Çöpü Boşalt + + + + Delete + Sil + + + + Rename + Yeniden adlandır + + + + Open in Terminal + Uçbirimde aç + + + + Set as ... + + + + + Set as Wallpaper + Arkaplan olarak ayarla + + + + Set as Login Screen + + + + + Properties + Özellikler + + + + Change background + Arkaplanı değiştir + + + + Restore + Onar + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + İptal + + + + FolderPage + + + Empty folder + Boş klasör + + + + Open + + + + + + Properties + Özellikler + + + + File + Dosya + + + + New Folder + Yeni Klasör + + + + Quit + Çıkış + + + + Edit + Düzenle + + + + Select All + Hepsini seç + + + + Cut + Kes + + + + Copy + Kopyala + + + + Paste + Yapıştır + + + + Help + Yardım + + + + About + Hakkında + + + + File Manager + Dosya Yöneticisi + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 öğe + + + + %1 items + %1 öğe + + + + %1 selected + %1 seçildi + + + + Empty Trash + Çöpü Boşalt + + + + Main + + File Manager + Dosya Yöneticisi + + + Open + + + + + OpenWithDialog + + + No applications + Uygulama yok + + + + Set as default + Varsayılan olarak ayarla + + + + Cancel + İptal + + + + Open + + + + + Open With + Birlikte aç + + + + OptionsMenu + + + Icons + İkonlar + + + + List + Liste + + + + Name + İsim + + + + Date + Tarih + + + + Type + Tür + + + + Size + Boyut + + + + PlacesModel + + + Home + Ev + + + + Desktop + Masaüstü + + + + Documents + Belgeler + + + + Downloads + İndirilenler + + + + Music + Müzik + + + + Pictures + Resimler + + + + Videos + Videolar + + + + Trash + Çöp + + + + + Drives + Sürücüler + + + + Computer + + + + + PropertiesDialog + + Properties + Özellikler + + + + Type: + Tip: + + + + Location: + Lokasyon: + + + + Size: + Boyut: + + + + Calculating... + Hesaplanıyor... + + + + Created: + Oluşturuldu: + + + + Modified: + Düzenlendi: + + + + Accessed: + Erişildi: + + + + Cancel + İptal + + + + OK + Tamam + + + %1 files + %1 dosyalar + + + + SideBar + + + Open + + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Dosya Yöneticisi + + + diff --git a/filemanager/translations/uk_UA.ts b/filemanager/translations/uk_UA.ts new file mode 100644 index 0000000..6b01741 --- /dev/null +++ b/filemanager/translations/uk_UA.ts @@ -0,0 +1,724 @@ + + + + + CreateFolderDialog + + + New folder name + Ім'я нової папки + + + + New folder + Нова папка + + + + Cancel + Скасувати + + + + OK + ОК + + + + DateHelper + + + Now + Щойно + + + + 1 minute ago + 1 хвилину тому + + + + %1 minutes ago + %1 хвилин(-и) тому + + + + 1 hour ago + 1 годину тому + + + + %1 hours ago + %1 годин(-и) тому + + + + 1 day ago + 1 день тому + + + + %1 days ago + %1 дні(-в) тому + + + + DeleteDialog + + + Do you want to delete it permanently? + Ви справді бажаєте видалити це назавжди? + + + + + Cancel + Скасувати + + + + + Delete + Видалити + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Скасувати + + + + Delete + Видалити + + + + DesktopView + + + Desktop + Робочий стіл + + + + EmptyTrashDialog + + + File Manager + Провідник + + + + Do you want to permanently delete all files from the Trash? + Ви хочете безповоротно видалити файли з кошика? + + + + Cancel + Скасувати + + + + Empty Trash + Очистити кошик + + + + FilePropertiesDialog + + + Properties + Властивості + + + + %1 files + %1 файлів + + + + FolderModel + + + %1 item + %1 об'єкт + + + + %1 items + %1 об'єкт(-ів) + + + + The file or folder %1 does not exist. + Каталогу чи файлу %1 не існує. + + + + Select All + Виділити усе + + + File Manager + Провідник + + + + Open + Відкрити + + + + Open with + Відкрити за допомогою + + + + Cut + Вирізати + + + + Copy + Копіювати + + + + Paste + Вставити + + + + + New Folder + Нова папка + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + В кошик + + + + Empty Trash + Очистити кошик + + + + Delete + Видалити + + + + Rename + Переіменувати + + + + Open in Terminal + Відкрити в командному рядку + + + + Set as ... + + + + + Set as Wallpaper + Використати як фоновий малюнок + + + + Set as Login Screen + + + + + Properties + Властивості + + + + Change background + Змінити фоновий малюнок + + + + Restore + Відновити + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Скасувати + + + + FolderPage + + + Empty folder + Пуста папка + + + + Open + Відкрити + + + + + Properties + Властивості + + + + File + Файл + + + + New Folder + Новий каталог + + + + Quit + Вийти + + + + Edit + Редагувати + + + + Select All + Виділити усе + + + + Cut + Вирізати + + + + Copy + Копіювати + + + + Paste + Вставити + + + + Help + Довідка + + + + About + Про застосунок + + + + File Manager + Провідник + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 об'єкт + + + + %1 items + %1 об'єктів + + + + %1 selected + %1 обрано + + + + Empty Trash + Очистити кошик + + + + Main + + File Manager + Провідник + + + Open + Відкрити + + + + OpenWithDialog + + + No applications + Застосунків немає + + + + Set as default + Зробити типовим + + + + Cancel + Скасувати + + + + Open + Відкрити + + + + Open With + Відкрити за допомогою + + + + OptionsMenu + + + Icons + Іконки + + + + List + Список + + + + Name + Ім'я + + + + Date + Дата + + + + Type + Тип + + + + Size + Розмір + + + + PlacesModel + + + Home + Домашня папка + + + + Desktop + Робочий стіл + + + + Documents + Документи + + + + Downloads + Завантажені файли + + + + Music + Музика + + + + Pictures + Картинки + + + + Videos + Відео + + + + Trash + Кошик + + + + + Drives + Приводи + + + + Computer + + + + + PropertiesDialog + + Properties + Властивості + + + + Type: + Тип: + + + + Location: + Розміщення: + + + + Size: + Розмір: + + + + Calculating... + Вираховування... + + + + Created: + Створено: + + + + Modified: + Змінено: + + + + Accessed: + Доступ : + + + + Cancel + Скасувати + + + + OK + ОК + + + %1 files + %1 файлів + + + + SideBar + + + Open + Відкрити + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Провідник + + + diff --git a/filemanager/translations/uz_UZ.ts b/filemanager/translations/uz_UZ.ts new file mode 100644 index 0000000..b1c628b --- /dev/null +++ b/filemanager/translations/uz_UZ.ts @@ -0,0 +1,716 @@ + + + + + CreateFolderDialog + + + New folder name + Yangi jild nomi + + + + New folder + Yangi jild + + + + Cancel + Bekor + + + + OK + Mayli + + + + DateHelper + + + Now + Hozir + + + + 1 minute ago + 1 daqiqa avval + + + + %1 minutes ago + %1 daqiqa avval + + + + 1 hour ago + 1 soat avval + + + + %1 hours ago + %1 soatlar avval + + + + 1 day ago + 1 kun aval + + + + %1 days ago + %1 kun avval + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + Bekor + + + + + Delete + O'chirish + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Bekor + + + + Delete + O'chirish + + + + DesktopView + + + Desktop + Ishchi Stol + + + + EmptyTrashDialog + + + File Manager + Fayllar Boshqaruvchisi + + + + Do you want to permanently delete all files from the Trash? + Barcha fayllarni axlat qutisidan butunlay o'chirib tashlamoqchimisiz? + + + + Cancel + Bekor + + + + Empty Trash + Qutichani bo'shatish + + + + FilePropertiesDialog + + + Properties + + + + + %1 files + %1 fayllar + + + + FolderModel + + + %1 item + %1 element + + + + %1 items + %1 element + + + + The file or folder %1 does not exist. + + + + + Select All + Barchasini belgilash + + + + Open + Ochish + + + + Open with + + + + + Cut + Qirqish + + + + Copy + Nusxa olish + + + + Paste + Joylash + + + + + New Folder + Yangi jild + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + + Move To Trash + Savatchaga joylash + + + + Empty Trash + Savatchani tozalash + + + + Delete + O'chirish + + + + Rename + Qayta nomlash + + + + Open in Terminal + Terminalda ochish + + + + Set as ... + + + + + Set as Wallpaper + Fon rasmi + + + + Set as Login Screen + + + + + Properties + Xususiyatlari + + + + Change background + Fon rasmini almashtirish + + + + Restore + + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + Bekor + + + + FolderPage + + + Empty folder + Bo'sh jild + + + + Open + Ochish + + + + + Properties + Xususiyatlar + + + + File + + + + + New Folder + Yangi jild + + + + Quit + + + + + Edit + + + + + Select All + Barchasini belgilash + + + + Cut + Qirqish + + + + Copy + Nusxa olish + + + + Paste + Joylash + + + + Help + + + + + About + + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 element + + + + %1 items + %1 element + + + + %1 selected + %1 belgilangan + + + + Empty Trash + Savatchani bo'shatish + + + + Main + + Open + Ochish + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + Bekor + + + + Open + Ochish + + + + Open With + + + + + OptionsMenu + + + Icons + Belgichalar + + + + List + Ro'yxat + + + + Name + Nom + + + + Date + Sana + + + + Type + + + + + Size + O'lcham + + + + PlacesModel + + + Home + Uy + + + + Desktop + Ishchi Stol + + + + Documents + Hujjatlar + + + + Downloads + Yuklanmalar + + + + Music + Misiqalar + + + + Pictures + Suratlar + + + + Videos + VIdeolar + + + + Trash + Savatcha + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + Properties + Xususiyatlar + + + + Type: + Turi: + + + + Location: + Joylashuvi: + + + + Size: + O'lchami: + + + + Calculating... + Hisoblanmoqda... + + + + Created: + Yaratildi: + + + + Modified: + O'zgartirildi: + + + + Accessed: + Kirish: + + + + Cancel + Bekor + + + + OK + OK + + + %1 files + %1 fayllar + + + + SideBar + + + Open + Ochish + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + Faylar boshqaruvchisi + + + diff --git a/filemanager/translations/zh_CN.ts b/filemanager/translations/zh_CN.ts new file mode 100644 index 0000000..5bff48b --- /dev/null +++ b/filemanager/translations/zh_CN.ts @@ -0,0 +1,737 @@ + + + + + CreateFolderDialog + + + New folder name + 新建文件夹名称 + + + + New folder + 新建文件夹 + + + + Cancel + 取消 + + + + OK + 确定 + + + + DateHelper + + + Now + 现在 + + + + 1 minute ago + 一分钟前 + + + + %1 minutes ago + %1分钟前 + + + + 1 hour ago + 一小时前 + + + + %1 hours ago + %1小时前 + + + + 1 day ago + 一天前 + + + + %1 days ago + %1天前 + + + + DeleteDialog + + + Do you want to delete it permanently? + 是否要永久删除? + + + + + Cancel + 取消 + + + + + Delete + 删除 + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + 取消 + + + + Delete + 删除 + + + + DesktopView + + + Desktop + 桌面 + + + + EmptyTrashDialog + + + File Manager + 文件管理器 + + + + Do you want to permanently delete all files from the Trash? + 是否要从回收站中永久删除所有文件? + + + + Cancel + 取消 + + + + Empty Trash + 清空回收站 + + + + FilePropertiesDialog + + + Properties + 属性 + + + + %1 files + %1 项 + + + + FolderModel + + + %1 item + %1 项 + + + + %1 items + %1 项 + + + + The file or folder %1 does not exist. + 文件或文件夹 %1 不存在。 + + + + Select All + 全选 + + + File Manager + 文件管理器 + + + + Open + 打开 + + + + Open with + 打开方式 + + + + Cut + 剪切 + + + + Copy + 复制 + + + + Paste + 粘贴 + + + + + New Folder + 新建文件夹 + + + + + New Text + 新建文本 + + + + + New Documents + 新建文档 + + + + Extract Here + 解压到此处 + + + + Extract To... + 解压到... + + + + Select Destination + 选择目标位置 + + + + ZIP Archive + ZIP 压缩包 + + + + TAR Archive + TAR 压缩包 + + + + 7-Zip Archive + 7-Zip 压缩包 + + + + + Refresh + 刷新 + + + + TAR Archive (gzip) + TAR 压缩包 (gzip) + + + + TAR Archive (bzip2) + TAR 压缩包 (bzip2) + + + + TAR Archive (xz) + TAR 压缩包 (xz) + + + + TAR Archive (zstd) + TAR 压缩包 (zstd) + + + + TAR Archive (uncompressed) + TAR 压缩包 (未压缩) + + + + Move To Trash + 移动到回收站 + + + + Empty Trash + 清空回收站 + + + + Delete + 删除 + + + + Rename + 重命名 + + + + Open in Terminal + 在终端中打开 + + + + Set as ... + + + + + Set as Wallpaper + 设置为壁纸 + + + + Set as Login Screen + + + + + Properties + 属性 + + + + Change background + 更改桌面背景 + + + + Restore + 恢复 + + + + Show hidden files + 显示隐藏文件 + + + + Open in new window + 在新窗口中打开 + + + + View + 查看 + + + Cancel + 取消 + + + + Icon Size + 图标大小 + + + + Huge + 超大 + + + + Large + + + + + Normal + + + + + Small + + + + Auto Arrange + 自动排列 + + + + Compress + 压缩 + + + + Extract + 解压缩 + + + + FolderPage + + + Empty folder + 空文件夹 + + + + Open + 打开 + + + + + Properties + 属性 + + + + File + 文件 + + + + New Folder + 新建文件夹 + + + + Quit + 退出 + + + + Edit + 编辑 + + + + Select All + 全选 + + + + Cut + 剪切 + + + + Copy + 复制 + + + + Paste + 粘贴 + + + + Help + 帮助 + + + + About + 关于 + + + + File Manager + 文件管理器 + + + + A file manager designed for LingmoOS. + 专为 LingmoOS 打造的文件管理器。 + + + + %1 item + %1 项 + + + + %1 items + %1 项 + + + + %1 selected + 选中了 %1 项 + + + + Empty Trash + 清空回收站 + + + + Main + + File Manager + 文件管理器 + + + Open + 打开 + + + + OpenWithDialog + + + No applications + 没有应用程序 + + + + Set as default + 设置为默认 + + + + Cancel + 取消 + + + + Open + 打开 + + + + Open With + 打开方式 + + + + OptionsMenu + + + Icons + 图标视图 + + + + List + 列表视图 + + + + Name + 名称 + + + + + Date + 日期 + + + + Type + 类型 + + + + Size + 大小 + + + + PlacesModel + + + Home + 主文件夹 + + + + Desktop + 桌面 + + + + Documents + 文档 + + + + Downloads + 下载 + + + + Music + 音乐 + + + + Pictures + 图片 + + + + Videos + 视频 + + + + Trash + 回收站 + + + + + Drives + 设备 + + + + Computer + 计算机 + + + + PropertiesDialog + + + Type: + 类型: + + + + Location: + 位置: + + + + Size: + 大小: + + + + Calculating... + 计算中... + + + + Created: + 创建时间: + + + + Modified: + 修改时间: + + + + Accessed: + 访问时间: + + + + Cancel + 取消 + + + + OK + 确定 + + + + SideBar + + + Open + 打开 + + + + Open in new window + 在新窗口中打开 + + + + Eject + 弹出 + + + + Unmount + 卸载 + + + + View + + View + 查看 + + + + Wallpaper + + %1 +Lingmo OS Developer preview version + %1 +灵墨操作系统 开发者预览版本 + + + + main + + + File Manager + 文件管理器 + + + diff --git a/filemanager/translations/zh_TW.ts b/filemanager/translations/zh_TW.ts new file mode 100644 index 0000000..560bf74 --- /dev/null +++ b/filemanager/translations/zh_TW.ts @@ -0,0 +1,721 @@ + + + + + CreateFolderDialog + + + New folder name + 新建資料夾名稱 + + + + New folder + 新建資料夾 + + + + Cancel + 取消 + + + + OK + + + + + DateHelper + + + Now + 當前 + + + + 1 minute ago + 1 分鐘前 + + + + %1 minutes ago + %1 分鐘前 + + + + 1 hour ago + 1 小時前 + + + + %1 hours ago + %1 小時前 + + + + 1 day ago + 1 天前 + + + + %1 days ago + %1 天前 + + + + DeleteDialog + + + Do you want to delete it permanently? + 是否要永久刪除此文件 + + + + + Cancel + 取消 + + + + + Delete + 刪除 + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + 取消 + + + + Delete + 刪除 + + + + DesktopView + + + Desktop + 桌面 + + + + EmptyTrashDialog + + + File Manager + 檔案管理員 + + + + Do you want to permanently delete all files from the Trash? + 是否要永久刪除回收筒中的所有文件? + + + + Cancel + 取消 + + + + Empty Trash + 清空回收筒 + + + + FilePropertiesDialog + + + Properties + 屬性 + + + + %1 files + %1 檔案 + + + + FolderModel + + + %1 item + %1 件物品 + + + + %1 items + %1 件物品 + + + + The file or folder %1 does not exist. + 這個文件或文件夾%1不存在。 + + + + Select All + 選擇全部 + + + File Manager + 檔案管理員 + + + + Open + 開啟 + + + + Open with + 用什麼打開 + + + + Cut + 剪下 + + + + Copy + 拷貝 + + + + Paste + 貼上 + + + + + New Folder + 新建資料夾 + + + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + 解壓到此處 + + + + Extract To... + 解壓到... + + + + Select Destination + 選擇目標位置 + + + + ZIP Archive + ZIP 壓縮包 + + + + TAR Archive + TAR 壓縮包 + + + + 7-Zip Archive + 7-Zip 壓縮包 + + + + + Refresh + 刷新 + + + + TAR Archive (gzip) + TAR 壓縮包 (gzip) + + + + TAR Archive (bzip2) + TAR 壓縮包 (bzip2) + + + + TAR Archive (xz) + TAR 壓縮包 (xz) + + + + TAR Archive (zstd) + TAR 壓縮包 (zstd) + + + + TAR Archive (uncompressed) + TAR 壓縮包 (未壓縮) + + + + Move To Trash + 移至回收筒 + + + + Empty Trash + 清空回收筒 + + + + Delete + 刪除 + + + + Rename + 重新命名 + + + + Open in Terminal + 在終端機中開啓 + + + + Set as ... + + + + + Set as Wallpaper + 設為桌布 + + + + Set as Login Screen + + + + + Properties + 屬性 + + + + Change background + 更換背景 + + + + Restore + 還原 + + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + 圖標大小 + + + + Huge + 超大 + + + + Large + + + + + Normal + + + + + Small + + + + + View + + + + Cancel + 取消 + + + + FolderPage + + + Empty folder + 空資料夾 + + + + Open + 開啓 + + + + + Properties + 屬性 + + + + File + 文件 + + + + New Folder + 新建資料夾 + + + + Quit + + + + + Edit + + + + + Select All + 選擇全部 + + + + Cut + 剪下 + + + + Copy + 拷貝 + + + + Paste + 貼上 + + + + Help + + + + + About + + + + + File Manager + 檔案管理員 + + + + A file manager designed for LingmoOS. + + + + + %1 item + %1 件物品 + + + + %1 items + %1 件物品 + + + + %1 selected + 已選 %1 件 + + + + Empty Trash + 清空回收站 + + + + Main + + File Manager + 檔案管理員 + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + 取消 + + + + Open + + + + + Open With + + + + + OptionsMenu + + + Icons + 圖符 + + + + List + 列表視圖 + + + + Name + 名稱 + + + + + Date + 日期 + + + + Type + + + + + Size + 尺寸 + + + + PlacesModel + + + Home + 個人資料夾 + + + + Desktop + 桌面 + + + + Documents + 文件 + + + + Downloads + 下載 + + + + Music + 音樂 + + + + Pictures + 圖片 + + + + Videos + 影片 + + + + Trash + 回收筒 + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + Properties + 屬性 + + + + Type: + 類別: + + + + Location: + 位置: + + + + Size: + 大小: + + + + Calculating... + 計算中… + + + + Created: + 建立時間: + + + + Modified: + 修改時間: + + + + Accessed: + 訪問時間: + + + + Cancel + 取消 + + + + OK + + + + %1 files + %1 檔案 + + + + SideBar + + + Open + + + + + Open in new window + + + + + Eject + + + + + Unmount + + + + + main + + + File Manager + 檔案管理員 + + + diff --git a/filemanager/widgets/itemviewadapter.cpp b/filemanager/widgets/itemviewadapter.cpp new file mode 100644 index 0000000..f12b7fe --- /dev/null +++ b/filemanager/widgets/itemviewadapter.cpp @@ -0,0 +1,107 @@ +#include "itemviewadapter.h" + +#include +#include +#include + +ItemViewAdapter::ItemViewAdapter(QObject *parent) + : QObject(parent) + , m_adapterView(nullptr) + , m_adapterModel(nullptr) + , m_adapterIconSize(-1) +{ +} + +QAbstractItemModel *ItemViewAdapter::model() const +{ + return m_adapterModel; +} + +QSize ItemViewAdapter::iconSize() const +{ + return QSize(m_adapterIconSize, m_adapterIconSize); +} + +QPalette ItemViewAdapter::palette() const +{ + return QPalette(); +} + +QRect ItemViewAdapter::visibleArea() const +{ + return m_adapterVisibleArea; +} + +QRect ItemViewAdapter::visualRect(const QModelIndex &index) const +{ + // FIXME TODO: Implemented on DND branch. + + Q_UNUSED(index); + + return QRect(); +} + +void ItemViewAdapter::connect(Signal signal, QObject *receiver, const char *slot) +{ + if (signal == ScrollBarValueChanged) { + QObject::connect(this, SIGNAL(viewScrolled()), receiver, slot); + } else if (signal == IconSizeChanged) { + QObject::connect(this, SIGNAL(adapterIconSizeChanged()), receiver, slot); + } +} + +QAbstractItemModel *ItemViewAdapter::adapterModel() const +{ + return m_adapterModel; +} + +QObject *ItemViewAdapter::adapterView() const +{ + return m_adapterView; +} + +void ItemViewAdapter::setAdapterView(QObject *view) +{ + if (m_adapterView != view) { + m_adapterView = view; + + emit adapterViewChanged(); + } +} + +void ItemViewAdapter::setAdapterModel(QAbstractItemModel *model) +{ + if (m_adapterModel != model) { + m_adapterModel = model; + + emit adapterModelChanged(); + } +} + +int ItemViewAdapter::adapterIconSize() const +{ + return m_adapterIconSize; +} + +void ItemViewAdapter::setAdapterIconSize(int size) +{ + if (m_adapterIconSize != size) { + m_adapterIconSize = size; + + emit adapterIconSizeChanged(); + } +} + +QRect ItemViewAdapter::adapterVisibleArea() const +{ + return m_adapterVisibleArea; +} + +void ItemViewAdapter::setAdapterVisibleArea(QRect rect) +{ + if (m_adapterVisibleArea != rect) { + m_adapterVisibleArea = rect; + + emit adapterVisibleAreaChanged(); + } +} diff --git a/filemanager/widgets/itemviewadapter.h b/filemanager/widgets/itemviewadapter.h new file mode 100644 index 0000000..48c23a0 --- /dev/null +++ b/filemanager/widgets/itemviewadapter.h @@ -0,0 +1,54 @@ +#ifndef ITEMVIEWADAPTER_H +#define ITEMVIEWADAPTER_H + +#include +#include + +class ItemViewAdapter : public QObject +{ + Q_OBJECT + + Q_PROPERTY(QObject *adapterView READ adapterView WRITE setAdapterView NOTIFY adapterViewChanged) + Q_PROPERTY(QAbstractItemModel *adapterModel READ adapterModel WRITE setAdapterModel NOTIFY adapterModelChanged) + Q_PROPERTY(int adapterIconSize READ adapterIconSize WRITE setAdapterIconSize NOTIFY adapterIconSizeChanged) + Q_PROPERTY(QRect adapterVisibleArea READ adapterVisibleArea WRITE setAdapterVisibleArea NOTIFY adapterVisibleAreaChanged) + +public: + enum Signal { ScrollBarValueChanged, IconSizeChanged }; + + explicit ItemViewAdapter(QObject *parent = nullptr); + + QAbstractItemModel *model() const; + QSize iconSize() const; + QPalette palette() const; + QRect visibleArea() const; + QRect visualRect(const QModelIndex &index) const; + void connect(Signal signal, QObject *receiver, const char *slot); + + QObject *adapterView() const; + void setAdapterView(QObject *view); + + QAbstractItemModel *adapterModel() const; + void setAdapterModel(QAbstractItemModel *model); + + int adapterIconSize() const; + void setAdapterIconSize(int size); + + QRect adapterVisibleArea() const; + void setAdapterVisibleArea(QRect rect); + +Q_SIGNALS: + void viewScrolled() const; + void adapterViewChanged() const; + void adapterModelChanged() const; + void adapterIconSizeChanged() const; + void adapterVisibleAreaChanged() const; + +private: + QObject *m_adapterView; + QAbstractItemModel *m_adapterModel; + int m_adapterIconSize; + QRect m_adapterVisibleArea; +}; + +#endif diff --git a/filemanager/widgets/rubberband.cpp b/filemanager/widgets/rubberband.cpp new file mode 100644 index 0000000..a8c2972 --- /dev/null +++ b/filemanager/widgets/rubberband.cpp @@ -0,0 +1,83 @@ +/* + * Copyright (C) 2021 LingmoOS Team. + * + * Author: revenmartin + * + * 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 + * 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 program. If not, see . + */ + +#include "rubberband.h" + +#include +#include +#include + +RubberBand::RubberBand(QQuickItem *parent) + : QQuickPaintedItem(parent) +{ +} + +RubberBand::~RubberBand() +{ +} + +void RubberBand::paint(QPainter *painter) +{ + if (!qApp) { + return; + } + + QPalette palette; + palette.setColor(QPalette::Highlight, m_color); + + QStyleOptionRubberBand opt; + opt.state = QStyle::State_None; + opt.direction = qApp->layoutDirection(); + opt.styleObject = this; + opt.palette = palette; + opt.shape = QRubberBand::Rectangle; + opt.opaque = false; + opt.rect = contentsBoundingRect().toRect(); + qApp->style()->drawControl(QStyle::CE_RubberBand, &opt, painter); +} + +bool RubberBand::intersects(const QRectF &rect) const +{ + return m_geometry.intersects(rect); +} + +QColor RubberBand::color() const +{ + return m_color; +} + +void RubberBand::setColor(QColor color) +{ + if (m_color != color) { + m_color = color; + update(); + emit colorChanged(); + } +} + +void RubberBand::geometryChanged(const QRectF &newGeometry, const QRectF &oldGeometry) +{ + Q_UNUSED(oldGeometry); + + m_geometry = newGeometry; + + update(); + + QQuickItem::geometryChanged(newGeometry, oldGeometry); +} diff --git a/filemanager/widgets/rubberband.h b/filemanager/widgets/rubberband.h new file mode 100644 index 0000000..436ec88 --- /dev/null +++ b/filemanager/widgets/rubberband.h @@ -0,0 +1,52 @@ +/* + * Copyright (C) 2021 LingmoOS Team. + * + * Author: revenmartin + * + * 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 + * 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 program. If not, see . + */ + +#ifndef RUBBERBAND_H +#define RUBBERBAND_H + +#include + +class RubberBand : public QQuickPaintedItem +{ + Q_OBJECT + Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY colorChanged) + +public: + explicit RubberBand(QQuickItem *parent = nullptr); + ~RubberBand() override; + + void paint(QPainter *painter) override; + + Q_INVOKABLE bool intersects(const QRectF &rect) const; + + QColor color() const; + void setColor(QColor color); + +signals: + void colorChanged(); + +protected: + void geometryChanged(const QRectF &newGeometry, const QRectF &oldGeometry) override; + +private: + QRectF m_geometry; + QColor m_color; +}; + +#endif diff --git a/filemanager/window.cpp b/filemanager/window.cpp new file mode 100644 index 0000000..df963df --- /dev/null +++ b/filemanager/window.cpp @@ -0,0 +1,51 @@ +/* + * Copyright (C) 2021 LingmoOS Team. + * + * Author: Reion Wong + * + * 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 + * 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 program. If not, see . + */ + +#include "window.h" +#include +#include +#include +#include + +Window::Window(QObject *parent) + : QQmlApplicationEngine(parent) +{ +} + +void Window::load(const QUrl &url) +{ + QQmlApplicationEngine::load(url); + + QQuickWindow *w = qobject_cast(rootObjects().first()); + + if (w) + w->installEventFilter(this); +} + +bool Window::eventFilter(QObject *obj, QEvent *e) +{ + if (e->type() == QEvent::Close) { + QPixmapCache::clear(); + clearComponentCache(); + deleteLater(); + e->accept(); + } + + return QObject::eventFilter(obj, e); +} diff --git a/desktop/desktop.h b/filemanager/window.h similarity index 62% rename from desktop/desktop.h rename to filemanager/window.h index 2edb25d..a9e37d3 100644 --- a/desktop/desktop.h +++ b/filemanager/window.h @@ -1,7 +1,7 @@ /* * Copyright (C) 2021 LingmoOS Team. * - * Author: Reion Wong + * Author: Reion Wong * * 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 @@ -17,28 +17,22 @@ * along with this program. If not, see . */ -#ifndef DESKTOP_H -#define DESKTOP_H +#ifndef WINDOW_H +#define WINDOW_H -#include -#include -#include +#include -#include "desktopview.h" - -class Desktop : public QObject +class Window : public QQmlApplicationEngine { Q_OBJECT public: - explicit Desktop(QObject *parent = nullptr); + explicit Window(QObject *parent = nullptr); -private slots: - void screenAdded(QScreen *qscreen); - void screenRemoved(QScreen *qscreen); + void load(const QUrl &url); -private: - QMap m_list; +protected: + bool eventFilter(QObject *o, QEvent *e); }; -#endif // DESKTOP_H +#endif // WINDOW_H diff --git a/images/dark/drive-harddisk-root.svg b/images/dark/drive-harddisk-root.svg old mode 100755 new mode 100644 diff --git a/images/dark/drive-harddisk.svg b/images/dark/drive-harddisk.svg old mode 100755 new mode 100644 diff --git a/images/dark/drive-optical.svg b/images/dark/drive-optical.svg old mode 100755 new mode 100644 diff --git a/images/dark/drive-removable-media-usb.svg b/images/dark/drive-removable-media-usb.svg old mode 100755 new mode 100644 diff --git a/images/dark/folder-desktop.svg b/images/dark/folder-desktop.svg old mode 100755 new mode 100644 diff --git a/images/dark/folder-document.svg b/images/dark/folder-document.svg old mode 100755 new mode 100644 diff --git a/images/dark/folder-download.svg b/images/dark/folder-download.svg old mode 100755 new mode 100644 diff --git a/images/dark/folder-home.svg b/images/dark/folder-home.svg old mode 100755 new mode 100644 diff --git a/images/dark/folder-music.svg b/images/dark/folder-music.svg old mode 100755 new mode 100644 diff --git a/images/dark/folder-picture.svg b/images/dark/folder-picture.svg old mode 100755 new mode 100644 diff --git a/images/dark/folder-video.svg b/images/dark/folder-video.svg old mode 100755 new mode 100644 diff --git a/images/dark/user-trash.svg b/images/dark/user-trash.svg old mode 100755 new mode 100644 diff --git a/images/drive-harddisk-root.svg b/images/drive-harddisk-root.svg old mode 100755 new mode 100644 diff --git a/images/drive-harddisk.svg b/images/drive-harddisk.svg old mode 100755 new mode 100644 diff --git a/images/drive-optical.svg b/images/drive-optical.svg old mode 100755 new mode 100644 diff --git a/images/drive-removable-media-usb.svg b/images/drive-removable-media-usb.svg old mode 100755 new mode 100644 diff --git a/images/folder-desktop.svg b/images/folder-desktop.svg old mode 100755 new mode 100644 diff --git a/images/folder-document.svg b/images/folder-document.svg old mode 100755 new mode 100644 diff --git a/images/folder-download.svg b/images/folder-download.svg old mode 100755 new mode 100644 diff --git a/images/folder-home.svg b/images/folder-home.svg old mode 100755 new mode 100644 diff --git a/images/folder-music.svg b/images/folder-music.svg old mode 100755 new mode 100644 diff --git a/images/folder-picture.svg b/images/folder-picture.svg old mode 100755 new mode 100644 diff --git a/images/folder-video.svg b/images/folder-video.svg old mode 100755 new mode 100644 diff --git a/images/light/drive-harddisk-root.svg b/images/light/drive-harddisk-root.svg old mode 100755 new mode 100644 diff --git a/images/light/drive-harddisk.svg b/images/light/drive-harddisk.svg old mode 100755 new mode 100644 diff --git a/images/light/drive-optical.svg b/images/light/drive-optical.svg old mode 100755 new mode 100644 diff --git a/images/light/drive-removable-media-usb.svg b/images/light/drive-removable-media-usb.svg old mode 100755 new mode 100644 diff --git a/images/light/folder-desktop.svg b/images/light/folder-desktop.svg old mode 100755 new mode 100644 diff --git a/images/light/folder-document.svg b/images/light/folder-document.svg old mode 100755 new mode 100644 diff --git a/images/light/folder-download.svg b/images/light/folder-download.svg old mode 100755 new mode 100644 diff --git a/images/light/folder-home.svg b/images/light/folder-home.svg old mode 100755 new mode 100644 diff --git a/images/light/folder-music.svg b/images/light/folder-music.svg old mode 100755 new mode 100644 diff --git a/images/light/folder-picture.svg b/images/light/folder-picture.svg old mode 100755 new mode 100644 diff --git a/images/light/folder-video.svg b/images/light/folder-video.svg old mode 100755 new mode 100644 diff --git a/images/light/user-trash.svg b/images/light/user-trash.svg old mode 100755 new mode 100644 diff --git a/images/media-optical-data.svg b/images/media-optical-data.svg old mode 100755 new mode 100644 diff --git a/images/media-optical-mixed-cd.svg b/images/media-optical-mixed-cd.svg old mode 100755 new mode 100644 diff --git a/images/media-optical.svg b/images/media-optical.svg old mode 100755 new mode 100644 diff --git a/images/user-trash.svg b/images/user-trash.svg old mode 100755 new mode 100644 diff --git a/lingmo-filemanager.desktop b/lingmo-filemanager.desktop index 071ecdf..6b59d7a 100644 --- a/lingmo-filemanager.desktop +++ b/lingmo-filemanager.desktop @@ -1,7 +1,7 @@ [Desktop Entry] Type=Application Name=File Manager -Name[zh_CN]=文件管理器 +Name[zh_CN]=文件管理 GenericName=File Manager Comment=Lingmo File Manager Exec=lingmo-filemanager %u diff --git a/main.cpp b/main.cpp index d392d3a..91ee6aa 100644 --- a/main.cpp +++ b/main.cpp @@ -18,22 +18,6 @@ */ #include "application.h" -#include "model/placesmodel.h" -#include "model/foldermodel.h" -#include "model/pathbarmodel.h" -#include "model/positioner.h" -#include "widgets/rubberband.h" -#include "widgets/itemviewadapter.h" -#include "desktop/desktop.h" -#include "desktop/desktopsettings.h" -#include "desktop/desktopview.h" -#include "helper/datehelper.h" -#include "helper/fm.h" -#include "helper/shortcut.h" - -#include "draganddrop/declarativedragdropevent.h" -#include "draganddrop/declarativedroparea.h" -#include "draganddrop/declarativemimedata.h" #include @@ -41,33 +25,7 @@ int main(int argc, char *argv[]) { QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps, true); QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling, true); - - // Register QML Type. - const char *uri = "Lingmo.FileManager"; - const char *dragandrop_uri = "Lingmo.DragDrop"; - - qmlRegisterType(uri, 1, 0, "PlacesModel"); - qmlRegisterType(uri, 1, 0, "FolderModel"); - qmlRegisterType(uri, 1, 0, "PathBarModel"); - qmlRegisterType(uri, 1, 0, "Positioner"); - qmlRegisterType(uri, 1, 0, "RubberBand"); - qmlRegisterType(uri, 1, 0, "ItemViewAdapter"); - qmlRegisterType(uri, 1, 0, "DesktopSettings"); - qmlRegisterType(uri, 1, 0, "Fm"); - qmlRegisterType(uri, 1, 0, "ShortCut"); - -#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0) - qmlRegisterType(); - qmlRegisterType(); -#else - qmlRegisterAnonymousType(uri, 1); - qmlRegisterAnonymousType(dragandrop_uri, 1); -#endif - - qmlRegisterType(dragandrop_uri, 1, 0, "DropArea"); - qmlRegisterUncreatableType(dragandrop_uri, 1, 0, "MimeData", QStringLiteral("MimeData cannot be created from QML.")); - qmlRegisterUncreatableType(dragandrop_uri, 2, 0, "DragDropEvent", QStringLiteral("DragDropEvent cannot be created from QML.")); - + Application app(argc, argv); return app.run(); } diff --git a/qml.qrc b/qml.qrc index 9b5e165..5813350 100644 --- a/qml.qrc +++ b/qml.qrc @@ -59,6 +59,7 @@ images/light/drive-optical.svg qml/Dialogs/OpenWithDialog.qml qml/Dialogs/DeleteDialog.qml + qml/Dialogs/DeleteDialogForever.qml qml/Desktop/Wallpaper.qml images/folder-document.svg images/folder-desktop.svg diff --git a/qml/Desktop/Main.qml b/qml/Desktop/Main.qml index db2010a..241d7ca 100644 --- a/qml/Desktop/Main.qml +++ b/qml/Desktop/Main.qml @@ -1,7 +1,7 @@ /* - * Copyright (C) 2021 LingmoOS Team. + * Copyright (C) 2025 Lingmo OS Team. * - * Author: revenmartin + * Author: Lingmo OS Team * * 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 @@ -45,12 +45,22 @@ Item { id: dirModel url: desktopPath() isDesktop: true - sortMode: -1 + sortMode: globalSettings.sortMode viewAdapter: viewAdapter onCurrentIndexChanged: { _folderView.currentIndex = dirModel.currentIndex } + + onChangeIconSize: { + _folderView.iconSize = size + globalSettings.desktopIconSize = size + } + + onChangeSortMode: { + dirModel.sortMode = sortmode + globalSettings.sortMode = sortmode + } } FM.ItemViewAdapter { @@ -78,6 +88,9 @@ Item { focus: true model: dirModel + cellWidth: iconSize + 32 + cellHeight: iconSize + 48 + ScrollBar.vertical.policy: ScrollBar.AlwaysOff // Handle for topbar @@ -92,10 +105,6 @@ Item { delegate: FolderGridItem {} - onIconSizeChanged: { - globalSettings.desktopIconSize = _folderView.iconSize - } - onActiveFocusChanged: { if (!activeFocus) { _folderView.cancelRename() @@ -106,6 +115,41 @@ Item { Component.onCompleted: { dirModel.requestRename.connect(rename) } + + Connections { + target: dirModel + function onChangeIconSize(size) { + var newSize = Math.min(Math.max(size, minimumIconSize), maximumIconSize) + iconSize = newSize + cellWidth = newSize + 32 + cellHeight = newSize + 48 + } + function onChangeSortMode(sortmode) { + switch (sortmode) { + case sortModeName: + // 按文件名排序 + console.log("Sorting by name") + break; + case sortModeType: + // 按文件类型排序 + console.log("Sorting by type") + break; + case sortModeModified: + // 按修改时间排序 + console.log("Sorting by modified time") + break; + case sortModeSize: + // 按文件大小排序 + console.log("Sorting by size") + break; + default: + // 默认排序 + console.log("Using default sorting") + break; + } + sortMode = sortmode + } + } } FM.ShortCut { @@ -139,6 +183,9 @@ Item { onDeleteFile: { dirModel.keyDeletePress() } + onDeleteFileForever: { + dirModel.keyDeleteForever() + } onKeyPressed: { dirModel.keyboardSearch(text) } diff --git a/qml/Desktop/Wallpaper.qml b/qml/Desktop/Wallpaper.qml index d5a35eb..03e21e7 100644 --- a/qml/Desktop/Wallpaper.qml +++ b/qml/Desktop/Wallpaper.qml @@ -62,4 +62,18 @@ Item { } } } + + // Text { + // id: desktopWatermark + // text: qsTr("%1\nLingmo OS Developer preview version").arg(settings.version) + // anchors.right: parent.right + // anchors.rightMargin: 10 + // anchors.top: parent.top + // anchors.topMargin: 29 + // font.pixelSize: 24 + // color: "#80FFFFFF" // 半透明颜色 + // opacity: 0.76 // 透明度 + // horizontalAlignment: Text.AlignRight + // renderType: Text.NativeRendering // 使用本地渲染以提高性能 + // } } diff --git a/qml/Dialogs/DeleteDialog.qml b/qml/Dialogs/DeleteDialog.qml index 3fd2ef9..066007f 100644 --- a/qml/Dialogs/DeleteDialog.qml +++ b/qml/Dialogs/DeleteDialog.qml @@ -72,8 +72,8 @@ LingmoUI.Window { focus: true Layout.fillWidth: true onClicked: { - control.close() model.deleteSelected() + control.close() } flat: true } diff --git a/qml/Dialogs/DeleteDialogForever.qml b/qml/Dialogs/DeleteDialogForever.qml new file mode 100644 index 0000000..1c21a8e --- /dev/null +++ b/qml/Dialogs/DeleteDialogForever.qml @@ -0,0 +1,92 @@ +/* + * Copyright (C) 2025 Lingmo OS Team. + * + * Author: Lingmo OS Team + * + * 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 + * 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 program. If not, see . + */ + +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import QtQuick.Window 2.12 +import QtQuick.Layouts 1.12 +import LingmoUI 1.0 as LingmoUI +import Lingmo.FileManager 1.0 + +LingmoUI.Window { + id: control + + flags: Qt.Dialog | Qt.FramelessWindowHint | Qt.WindowStaysOnTopHint + minimizeButtonVisible: false + visible: true + + width: contentWidth + height: contentHeight + + minimumWidth: contentWidth + minimumHeight: contentHeight + maximumWidth: contentWidth + maximumHeight: contentHeight + + property var contentWidth: _mainLayout.implicitWidth + LingmoUI.Units.largeSpacing * 2 + property var contentHeight: _mainLayout.implicitHeight + control.header.height + LingmoUI.Units.largeSpacing * 2 + + background.color: LingmoUI.Theme.secondBackgroundColor + + ColumnLayout { + id: _mainLayout + anchors.fill: parent + anchors.leftMargin: LingmoUI.Units.largeSpacing + anchors.rightMargin: LingmoUI.Units.largeSpacing + anchors.bottomMargin: LingmoUI.Units.smallSpacing + spacing: LingmoUI.Units.largeSpacing + + Label { + text: fileCount === 1 ? qsTr("Are you sure you want to permanently delete \"%1\"?") + .arg(urls[0].toString().split('/').pop()) + : qsTr("Are you sure you want to permanently delete %1 files?") + .arg(fileCount) + Layout.fillWidth: true + wrapMode: Text.Wrap + } + + Label { + text: qsTr("Once deleted, these files cannot be recovered.") + Layout.fillWidth: true + wrapMode: Text.Wrap + color: LingmoUI.Theme.disabledTextColor + } + + RowLayout { + spacing: LingmoUI.Units.largeSpacing + + Button { + text: qsTr("Cancel") + Layout.fillWidth: true + onClicked: control.close() + } + + Button { + text: qsTr("Delete") + focus: true + Layout.fillWidth: true + onClicked: { + control.close() + model.deleteSelected() + } + flat: true + } + } + } +} \ No newline at end of file diff --git a/qml/Dialogs/OpenWithDialog.qml b/qml/Dialogs/OpenWithDialog.qml index ff67c68..6050128 100644 --- a/qml/Dialogs/OpenWithDialog.qml +++ b/qml/Dialogs/OpenWithDialog.qml @@ -1,22 +1,3 @@ -/* - * Copyright (C) 2021 LingmoOS Team. - * - * Author: Reion Wong - * - * 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 - * 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 program. If not, see . - */ - import QtQuick 2.12 import QtQuick.Controls 2.4 import QtQuick.Layouts 1.3 @@ -43,6 +24,12 @@ Item { listView.model.append(items[i]) } + // 获取所有程序并添加到 allAppsModel + var allApps = mimeAppManager.allApps(control.url) + for (var j in allApps) { + allAppsModel.append(allApps[j]) + } + defaultCheckBox.checked = false doneButton.focus = true } @@ -55,6 +42,14 @@ Item { main.close() } + function openOtherApp() { + if (defaultCheckBox.checked) + mimeAppManager.setDefaultAppForFile(control.url, allAppsGridView.model.get(allAppsGridView.currentIndex).desktopFile) + + launcher.launchApp(allAppsGridView.model.get(allAppsGridView.currentIndex).desktopFile, control.url) + main.close() + } + Keys.enabled: true Keys.onEscapePressed: main.close() @@ -148,6 +143,90 @@ Item { } } } + visible: !showOtherApps + } + + // 添加显示所有程序的 GridView + GridView { + id: allAppsGridView + Layout.fillWidth: true + Layout.preferredHeight: 250 + model: allAppsModel + clip: true + ScrollBar.vertical: ScrollBar {} + + leftMargin: LingmoUI.Units.smallSpacing + rightMargin: LingmoUI.Units.smallSpacing + + cellHeight: { + var extraHeight = calcExtraSpacing(80, allAppsGridView.Layout.preferredHeight - topMargin - bottomMargin) + return 80 + extraHeight + } + + cellWidth: { + var extraWidth = calcExtraSpacing(120, allAppsGridView.width - leftMargin - rightMargin) + return 120 + extraWidth + } + + delegate: Item { + id: allAppsItem + width: GridView.view.cellWidth + height: GridView.view.cellHeight + scale: mouseArea.pressed ? 0.95 : 1.0 + + Behavior on scale { + NumberAnimation { + duration: 100 + } + } + + property bool isSelected: allAppsGridView.currentIndex === index + + MouseArea { + id: mouseArea + anchors.fill: parent + hoverEnabled: true + acceptedButtons: Qt.LeftButton + onDoubleClicked: control.openOtherApp() + onClicked: allAppsGridView.currentIndex = index + } + + Rectangle { + anchors.fill: parent + anchors.margins: LingmoUI.Units.smallSpacing + radius: LingmoUI.Theme.mediumRadius + color: isSelected ? LingmoUI.Theme.highlightColor + : mouseArea.containsMouse ? Qt.rgba(LingmoUI.Theme.textColor.r, + LingmoUI.Theme.textColor.g, + LingmoUI.Theme.textColor.b, + 0.1) : "transparent" + smooth: true + } + + ColumnLayout { + anchors.fill: parent + anchors.margins: LingmoUI.Units.smallSpacing + spacing: LingmoUI.Units.smallSpacing + + LingmoUI.IconItem { + id: icon + Layout.preferredHeight: 36 + Layout.preferredWidth: height + source: model.icon + Layout.alignment: Qt.AlignHCenter + } + + Label { + text: model.name + Layout.fillWidth: true + elide: Text.ElideMiddle + Layout.alignment: Qt.AlignHCenter + horizontalAlignment: Qt.AlignHCenter + color: isSelected ? LingmoUI.Theme.highlightedTextColor : LingmoUI.Theme.textColor + } + } + } + visible: showOtherApps } CheckBox { @@ -181,8 +260,29 @@ Item { enabled: listView.count > 0 Layout.fillWidth: true onClicked: control.openApp() + visible: !showOtherApps } + Button { + id: doneOtherButton + focus: true + flat: true + text: qsTr("Open") + enabled: listView.count > 0 + Layout.fillWidth: true + onClicked: control.openOtherApp() + visible: showOtherApps + } + + Switch { + id: showOtherAppsSwitch + text: qsTr("Show All Apps") + checked: showOtherApps + Layout.fillHeight: true + onCheckedChanged: { + showOtherApps = checked + } + } } } @@ -196,4 +296,17 @@ Item { } return Math.floor(extraSpacing) } -} + + // 定义一个模型用于存储所有程序 + ListModel { + id: allAppsModel + } + + // 控制其他应用程序的显示与隐藏 + property bool showOtherApps: false + + // onShowOtherAppsChanged: { + // otherAppsLabel.visible = showOtherApps + // allAppsGridView.visible = showOtherApps + // } +} \ No newline at end of file diff --git a/qml/FolderPage.qml b/qml/FolderPage.qml index 88cc875..2f2da62 100644 --- a/qml/FolderPage.qml +++ b/qml/FolderPage.qml @@ -427,6 +427,9 @@ Item { onDeleteFile: { dirModel.keyDeletePress() } + onDeleteFileForever: { + dirModel.keyDeleteForever() + } onRefresh: { dirModel.refresh() } diff --git a/qml/GlobalSettings.qml b/qml/GlobalSettings.qml index 3fc279e..30cbda7 100644 --- a/qml/GlobalSettings.qml +++ b/qml/GlobalSettings.qml @@ -1,7 +1,7 @@ /* - * Copyright (C) 2021 LingmoOS Team. + * Copyright (C) 2025 Lingmo OS Team. * - * Author: revenmartin + * Author: Lingmo OS Team * * 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 @@ -28,7 +28,12 @@ Settings { // Name, Date, Size property int orderBy: 0 - property int sortMode: 0 + property int sortMode: 1 + readonly property int sortModeNone: -1 + readonly property int sortModeName: 0 + readonly property int sortModeType: 1 + readonly property int sortModeModified: 2 + readonly property int sortModeSize: 3 // UI property int width: 900 @@ -38,4 +43,12 @@ Settings { property int minimumIconSize: 64 property int gridIconSize: 64 + + // 添加桌面图标预设尺寸 + readonly property int hugeIconSize: 96 + readonly property int largeIconSize: 72 + readonly property int normalIconSize: 64 + readonly property int smallIconSize: 48 + + property bool autoArrange: true // 默认开启自动排列 } diff --git a/qml/SideBar.qml b/qml/SideBar.qml index 119f022..a754a23 100644 --- a/qml/SideBar.qml +++ b/qml/SideBar.qml @@ -45,6 +45,20 @@ ListView { onDeviceSetupDone: sideBar.clicked(filePath) // 设备挂载上后,模拟点击了该设备以打开该页面 } + // Rectangle { + // anchors.fill: parent + // color: LingmoUI.Theme.darkMode ? Qt.lighter(LingmoUI.Theme.backgroundColor, 1.5) + // : Qt.darker(LingmoUI.Theme.backgroundColor, 1.05) + // opacity: root.compositing ? 0.3 : 0.4 + + // Behavior on color { + // ColorAnimation { + // duration: 250 + // easing.type: Easing.Linear + // } + // } + // } + model: placesModel clip: true diff --git a/qml/qml.qrc b/qml/qml.qrc new file mode 100644 index 0000000..5813350 --- /dev/null +++ b/qml/qml.qrc @@ -0,0 +1,81 @@ + + + qml/main.qml + qml/FolderPage.qml + qml/SideBar.qml + qml/FolderListItem.qml + qml/Dialogs/PropertiesDialog.qml + qml/FolderListView.qml + qml/Controls/IconButton.qml + images/dark/go-next.svg + images/dark/go-previous.svg + images/dark/grid.svg + images/dark/list.svg + images/light/go-next.svg + images/light/go-previous.svg + images/light/grid.svg + images/light/list.svg + qml/PathBar.qml + qml/Desktop/Main.qml + qml/FolderGridView.qml + qml/GlobalSettings.qml + qml/FolderGridItem.qml + qml/Dialogs/CreateFolderDialog.qml + images/light/checked.svg + images/dark/checked.svg + images/light/order_by_name.svg + images/dark/order_by_name.svg + images/light/date.svg + images/dark/date.svg + images/light/size.svg + images/dark/size.svg + qml/OptionsMenu.qml + images/light/up.svg + images/dark/up.svg + qml/Dialogs/EmptyTrashDialog.qml + images/light/drive-harddisk-root.svg + images/light/drive-harddisk.svg + images/light/drive-removable-media-usb.svg + images/light/folder-desktop.svg + images/light/folder-document.svg + images/light/folder-download.svg + images/light/folder-home.svg + images/light/folder-music.svg + images/light/folder-picture.svg + images/light/folder-video.svg + images/light/user-trash.svg + images/dark/drive-harddisk-root.svg + images/dark/drive-harddisk.svg + images/dark/drive-removable-media-usb.svg + images/dark/folder-desktop.svg + images/dark/folder-document.svg + images/dark/folder-download.svg + images/dark/folder-home.svg + images/dark/folder-music.svg + images/dark/folder-picture.svg + images/dark/folder-video.svg + images/dark/user-trash.svg + images/dark/drive-optical.svg + images/light/drive-optical.svg + qml/Dialogs/OpenWithDialog.qml + qml/Dialogs/DeleteDialog.qml + qml/Dialogs/DeleteDialogForever.qml + qml/Desktop/Wallpaper.qml + images/folder-document.svg + images/folder-desktop.svg + images/folder-download.svg + images/folder-home.svg + images/folder-music.svg + images/folder-picture.svg + images/folder-video.svg + images/user-trash.svg + images/drive-harddisk-root.svg + images/drive-harddisk.svg + images/drive-optical.svg + images/drive-removable-media-usb.svg + templates/TextFile.txt + images/media-optical-data.svg + images/media-optical-mixed-cd.svg + images/media-optical.svg + + diff --git a/runtime/runtime.cpp b/runtime/runtime.cpp new file mode 100644 index 0000000..f3e44d7 --- /dev/null +++ b/runtime/runtime.cpp @@ -0,0 +1,12 @@ +#include +#include "runtime.h" + +RunTime::RunTime(QObject *parent) + : QObject(parent) +{ +} + +RunTime::~RunTime() +{ +} + diff --git a/runtime/runtime.h b/runtime/runtime.h new file mode 100644 index 0000000..5173e2f --- /dev/null +++ b/runtime/runtime.h @@ -0,0 +1,17 @@ +#ifndef RUNTIME_H +#define RUNTIME_H + +#include + +class RunTime : public QObject +{ + Q_OBJECT +public: + explicit RunTime(QObject *parent = nullptr); + ~RunTime(); +private: + void ignoreSigInt(); +}; + + +#endif // RUNTIME_H diff --git a/translations/ar_AA.ts b/translations/ar_AA.ts index 79bc601..3518590 100644 --- a/translations/ar_AA.ts +++ b/translations/ar_AA.ts @@ -14,12 +14,12 @@ مجلد جديد - + Cancel إلغاء - + OK موافق @@ -27,37 +27,37 @@ DateHelper - + Now الآن - + 1 minute ago منذ دقيقة واحدة - + %1 minutes ago منذ %1 دقيقة - + 1 hour ago منذ ساعة واحدة - + %1 hours ago منذ %1 ساعة - + 1 day ago منذ يوم واحد - + %1 days ago منذ %1 يوم @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? متأكد من حذف هذا العنصر بشكل نهائي؟ - + + Cancel إلغاء - + + Delete حذف + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + إلغاء + + + + Delete + حذف + DesktopView - Desktop - سطح المكتب + سطح المكتب @@ -96,17 +140,17 @@ مدير الملفات - + Do you want to permanently delete all files from the Trash? هل تريد حذف جميع الملفات بصفة دائمة من سلة المهملات؟ - + Cancel إلغاء - + Empty Trash إفراغ سلة المهملات @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties خصائص - + %1 files %1 ملف @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 عنصر - + %1 items %1 عنصر - + The file or folder %1 does not exist. الملف أو المجلد %1 غير موجود. - + Select All تحديد الكل - File Manager - مدير الملفات + مدير الملفات - + Open فتح - + Open with فتح بواسطة - + Cut قص - + Copy نسخ - + Paste لصق - + + New Folder مجلد جديد - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash نقل إلى سلة المهملات - + Empty Trash إفراغ سلة المهملات - + Delete حذف - + Rename تعديل الاسم - + Open in Terminal فتح في الطرفية - + + Set as ... + + + + Set as Wallpaper تعيين كخلفية - + + Set as Login Screen + + + + Properties خصائص - + Change background تغيير الخلفية - + Restore إستعادة + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + الاسم + + + + Type + النوع + + + + Date + التاريخ + + + + Size + الحجم + + + + View + + + + Cancel + إلغاء + FolderPage - + Empty folder مجلد فارغ - + Open فتح - - + + Properties خصائص - + File ملف - + New Folder مجلد جديد - + Quit خروج - + Edit تحرير - + Select All تحديد الكل - + Cut قص - + Copy نسخ - + Paste لصق - + Help مساعدة - + About حول - + + File Manager + مدير الملفات + + + + A file manager designed for LingmoOS. + + + + %1 item %1 عنصر - + %1 items %1 عنصر - + %1 selected تم تحديد %1 - + Empty Trash إفراغ سلة المهملات + + Main + + File Manager + مدير الملفات + + + Open + فتح + + OpenWithDialog - + No applications لا توجد تطبيقات مناسبة - + Set as default تعيين كإعداد افتراضي - + Cancel إلغاء - + + Show All Apps + + + + + Open فتح - + Open With فتح بواسطة @@ -380,100 +613,128 @@ PlacesModel - + Home المنزل - + Desktop سطح المكتب - + Documents المستندات - + Downloads التنزيلات - + Music الموسيقى - + Pictures الصور - + Videos الفيديوهات - + Trash سلة المهمات - - + + Drives الأقراص + + + Computer + + PropertiesDialog - + Type: النوع: - + Location: المكان: - + Size: الحجم: - + Calculating... تُجرى عملية الحساب... - + Created: تاريخ الإنشاء: - + Modified: تاريخ أحدث تعديل: - + Accessed: تاريخ أحدث دخول: - + Cancel إلغاء - + OK موافق + + SideBar + + + Open + فتح + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/be_BY.ts b/translations/be_BY.ts index 21fd196..98f309a 100644 --- a/translations/be_BY.ts +++ b/translations/be_BY.ts @@ -14,12 +14,12 @@ Новая папка - + Cancel Адмена - + OK ОК @@ -27,37 +27,37 @@ DateHelper - + Now Зараз - + 1 minute ago 1 хвіліну таму - + %1 minutes ago %1 хвілін таму - + 1 hour ago 1 гадзіну таму - + %1 hours ago %1 гадзін таму - + 1 day ago 1 дзень таму - + %1 days ago %1 дзён таму @@ -65,17 +65,62 @@ DeleteDialog - + Do you want to delete it permanently? - + + + Cancel + Адмена + + + + + Delete + Выдаліць + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + Cancel Адмена - + Delete Выдаліць @@ -83,9 +128,8 @@ DesktopView - Desktop - Працоўны стол + Працоўны стол @@ -96,17 +140,17 @@ Менеджар файлаў - + Do you want to permanently delete all files from the Trash? Вы хочаце назаўжды выдаліць усе файлы з сметніцы? - + Cancel Адмена - + Empty Trash Ачысціць сметніцу @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Уласцівасці - + %1 files %1 файлаў @@ -127,219 +171,400 @@ FolderModel - + %1 item %1 аб'ект - + %1 items %1 аб'ектаў - + The file or folder %1 does not exist. - + Select All Вылучыць усё - - File Manager - - - - + Open Адкрыць - + Open with - + Cut Выразаць - + Copy Капіяваць - + Paste Уставіць - + + New Folder Новая папка - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Перамясціць у сметніцу - + Empty Trash Ачысціць сметніцу - + Delete Выдаліць - + Rename Перайменаваць - + Open in Terminal Адкрыць у тэрмінале - + + Set as ... + + + + Set as Wallpaper Усталяваць як шпалеры - + + Set as Login Screen + + + + Properties Уласцівасці - + Change background Змяніць фон - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Імя + + + + Type + + + + + Date + Дата + + + + Size + Памер + + + + View + + + + Cancel + Адмена + FolderPage - + Empty folder Пустая папка - + Open Адкрыць - - + + Properties Уласцівасці - + File - + New Folder Новая папка - + Quit - + Edit - + Select All Вылучыць усё - + Cut Выразаць - + Copy Капіяваць - + Paste Уставіць - + Help - + About - + + File Manager + + + + + A file manager designed for LingmoOS. + + + + %1 item %1 аб'ект - + %1 items %1 аб'ектаў - + %1 selected %1 вылучаны(-а) - + Empty Trash Ачысціць сметніцу + + Main + + Open + Адкрыць + + OpenWithDialog - + No applications - + Set as default - + Cancel Адмена - + + Show All Apps + + + + + Open Адкрыць - + Open With @@ -380,51 +605,56 @@ PlacesModel - + Home Дамашняя папка - + Desktop Працоўны стол - + Documents Дакументы - + Downloads Запампоўкі - + Music Музыка - + Pictures Відарысы - + Videos Відэа - + Trash Сметніца - - + + Drives + + + Computer + + PropertiesDialog @@ -433,47 +663,47 @@ Уласцівасці - + Type: Тып: - + Location: Размяшчэнне: - + Size: Памер: - + Calculating... Вылічэнне... - + Created: Створана: - + Modified: Зменена: - + Accessed: Доступ: - + Cancel Адмена - + OK OK @@ -482,6 +712,29 @@ %1 файлаў + + SideBar + + + Open + Адкрыць + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/be_Latn.ts b/translations/be_Latn.ts index 8284a0e..ca3a661 100644 --- a/translations/be_Latn.ts +++ b/translations/be_Latn.ts @@ -14,12 +14,12 @@ Novaja papka - + Cancel Admiena - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Zaraz - + 1 minute ago 1 chvilinu tamu - + %1 minutes ago %1 chvilin tamu - + 1 hour ago 1 hadzinu tamu - + %1 hours ago %1 hadzin tamu - + 1 day ago 1 dzień tamu - + %1 days ago %1 dzion tamu @@ -65,17 +65,62 @@ DeleteDialog - + Do you want to delete it permanently? - + + + Cancel + Admiena + + + + + Delete + Vydalić + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + Cancel Admiena - + Delete Vydalić @@ -83,9 +128,8 @@ DesktopView - Desktop - Pracoŭny stol + Pracoŭny stol @@ -96,17 +140,17 @@ Mieniedžar fajlaŭ - + Do you want to permanently delete all files from the Trash? Vy chočacie nazaŭždy vydalić usie fajly z smietnicy? - + Cancel Admiena - + Empty Trash Ačyscić smietnicu @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Ulascivasci - + %1 files %1 fajlaŭ @@ -127,219 +171,400 @@ FolderModel - + %1 item %1 abjekt - + %1 items %1 abjektaŭ - + The file or folder %1 does not exist. - + Select All Vylučyć usio - - File Manager - - - - + Open Adkryć - + Open with - + Cut Vyrazać - + Copy Kapijavać - + Paste Ustavić - + + New Folder Novaja papka - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Pieramiascić u smietnicu - + Empty Trash Ačyscić smietnicu - + Delete Vydalić - + Rename Pierajmienavać - + Open in Terminal Adkryć u terminalie - + + Set as ... + + + + Set as Wallpaper Ustaliavać jak špaliery - + + Set as Login Screen + + + + Properties Ulascivasci - + Change background Zmianić fon - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Imia + + + + Type + + + + + Date + Data + + + + Size + Pamier + + + + View + + + + Cancel + Admiena + FolderPage - + Empty folder Pustaja papka - + Open Adkryć - - + + Properties Ulascivasci - + File - + New Folder Novaja papka - + Quit - + Edit - + Select All Vylučyć usio - + Cut Vyrazać - + Copy Kapijavać - + Paste Ustavić - + Help - + About - + + File Manager + + + + + A file manager designed for LingmoOS. + + + + %1 item %1 abjekt - + %1 items %1 abjektaŭ - + %1 selected %1 vylučany - + Empty Trash Ačyscić smietnicu + + Main + + Open + Adkryć + + OpenWithDialog - + No applications - + Set as default - + Cancel Admiena - + + Show All Apps + + + + + Open Adkryć - + Open With @@ -380,51 +605,56 @@ PlacesModel - + Home Damašniaja papka - + Desktop Pracoŭny stol - + Documents Dakumienty - + Downloads Zapampoŭki - + Music Muzyka - + Pictures Vidarysy - + Videos Videa - + Trash Smietnica - - + + Drives + + + Computer + + PropertiesDialog @@ -433,47 +663,47 @@ Ulascivasci - + Type: Typ: - + Location: Razmiaščennie: - + Size: Pamier: - + Calculating... Vyličennie... - + Created: Stvorana: - + Modified: Zmieniena: - + Accessed: Dostup: - + Cancel Admiena - + OK OK @@ -482,6 +712,29 @@ %1 fajlaŭ + + SideBar + + + Open + Adkryć + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/bg_BG.ts b/translations/bg_BG.ts index c14252e..659040d 100644 --- a/translations/bg_BG.ts +++ b/translations/bg_BG.ts @@ -14,12 +14,12 @@ Нова папка - + Cancel Отмени - + OK Да @@ -27,37 +27,37 @@ DateHelper - + Now Сега - + 1 minute ago преди 1 минута - + %1 minutes ago %1 минути преди - + 1 hour ago преди 1 час - + %1 hours ago преди %1 часа - + 1 day ago преди 1 ден - + %1 days ago преди %1 дни @@ -65,17 +65,62 @@ DeleteDialog - + Do you want to delete it permanently? - + + Cancel Отмени - + + + Delete + Изтрийте + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Отмени + + + Delete Изтрийте @@ -83,9 +128,8 @@ DesktopView - Desktop - Работен плот + Работен плот @@ -96,17 +140,17 @@ Файлов мениджър - + Do you want to permanently delete all files from the Trash? Искате ли да изтриете окончателно всички файлове от кошчето? - + Cancel Отмени - + Empty Trash Празен кошчето @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Свойства - + %1 files %1 файлове @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 елемент - + %1 items %1 елементи - + The file or folder %1 does not exist. - + Select All Избери всички - File Manager - Файлов мениджър + Файлов мениджър - + Open Отвори - + Open with Отворете с - + Cut Изрежете - + Copy Копирайте - + Paste - + + New Folder Нова папка - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Преместване в кошчето - + Empty Trash Празен кошчето - + Delete Изтрийте - + Rename Преименувайте - + Open in Terminal Отваряне в терминал - + + Set as ... + + + + Set as Wallpaper Задаване като тапет - + + Set as Login Screen + + + + Properties Свойства - + Change background Смяна на фона - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + + + + + Type + + + + + Date + + + + + Size + + + + + View + + + + Cancel + Отмени + FolderPage - + Empty folder Празна папка - + Open Отвори - - + + Properties Свойства - + File Файл - + New Folder Нова папка - + Quit - + Edit Редактиране - + Select All Изберете всички - + Cut Изрежете - + Copy Копирайте - + Paste - + Help Помощ - + About За - + + File Manager + Файлов мениджър + + + + A file manager designed for LingmoOS. + + + + %1 item %1 елемент - + %1 items %1 елемента - + %1 selected %1 избран - + Empty Trash Празен кошчето + + Main + + File Manager + Файлов мениджър + + + Open + Отвори + + OpenWithDialog - + No applications - + Set as default - + Cancel Отмени - + + Show All Apps + + + + + Open Отвори - + Open With @@ -380,100 +613,128 @@ PlacesModel - + Home - + Desktop Работен плот - + Documents - + Downloads - + Music - + Pictures - + Videos - + Trash - - + + Drives + + + Computer + + PropertiesDialog - + Type: - + Location: - + Size: - + Calculating... - + Created: - + Modified: - + Accessed: - + Cancel Отмени - + OK Да + + SideBar + + + Open + Отвори + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/bs_BA.ts b/translations/bs_BA.ts index 581c264..91f44de 100644 --- a/translations/bs_BA.ts +++ b/translations/bs_BA.ts @@ -14,12 +14,12 @@ Nova fascikla - + Cancel Otkaži - + OK U redu @@ -27,37 +27,37 @@ DateHelper - + Now Sada - + 1 minute ago Prije 1 minutu - + %1 minutes ago Prije %1 minuta - + 1 hour ago Prije 1 sat - + %1 hours ago Prije %1 sati - + 1 day ago Prije 1 dan - + %1 days ago Prije %1 dana @@ -65,17 +65,62 @@ DeleteDialog - + Do you want to delete it permanently? - + + + Cancel + Otkaži + + + + + Delete + Obriši + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + Cancel Otkaži - + Delete Obriši @@ -83,9 +128,8 @@ DesktopView - Desktop - Radna površina + Radna površina @@ -96,17 +140,17 @@ Upravitelj fajlova - + Do you want to permanently delete all files from the Trash? Želite li trajno izbrisati sve fajlove iz Smeća? - + Cancel Otkaži - + Empty Trash Isprazni smeće @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Svojstva - + %1 files %1 fajlova @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 stavka - + %1 items %1 stavki - + The file or folder %1 does not exist. - + Select All Izaberi sve - File Manager - Upravitelj fajlova + Upravitelj fajlova - + Open Otvori - + Open with - + Cut Izreži - + Copy Kopiraj - + Paste Zalijepi - + + New Folder Nova fascikla - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Premjesti u smeće - + Empty Trash Isprazni smeće - + Delete Obriši - + Rename Preimenuj - + Open in Terminal Otvori u terminalu - + + Set as ... + + + + Set as Wallpaper Postavi kao pozadinu - + + Set as Login Screen + + + + Properties Svojstva - + Change background Promijeni pozadinu - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Ime + + + + Type + + + + + Date + Datum + + + + Size + Veličina + + + + View + + + + Cancel + Otkaži + FolderPage - + Empty folder Prazna fascikla - + Open Otvori - - + + Properties Svojstva - + File - + New Folder Nova fascikla - + Quit - + Edit - + Select All Izaberi sve - + Cut Izreži - + Copy Kopiraj - + Paste Zalijepi - + Help - + About - + + File Manager + Upravitelj fajlova + + + + A file manager designed for LingmoOS. + + + + %1 item %1 stavka - + %1 items %1 stavki - + %1 selected %1 odabrano - + Empty Trash Isprazni smeće + + Main + + File Manager + Upravitelj fajlova + + + Open + Otvori + + OpenWithDialog - + No applications - + Set as default - + Cancel Otkaži - + + Show All Apps + + + + + Open Otvori - + Open With @@ -380,51 +613,56 @@ PlacesModel - + Home Dom - + Desktop Radna površina - + Documents Dokumenti - + Downloads Preuzimanja - + Music Muzika - + Pictures Slike - + Videos Videozapisi - + Trash Smeće - - + + Drives + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Svojstva - + Type: Vrsta: - + Location: Lokacija: - + Size: Veličina: - + Calculating... Računanje... - + Created: Napravljeno: - + Modified: Izmijenjeno: - + Accessed: Pristupljeno: - + Cancel Otkaži - + OK U redu @@ -482,6 +720,29 @@ %1 fajlova + + SideBar + + + Open + Otvori + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/cs_CZ.ts b/translations/cs_CZ.ts index db118df..34a1fd5 100644 --- a/translations/cs_CZ.ts +++ b/translations/cs_CZ.ts @@ -14,12 +14,12 @@ Nová složka - + Cancel Storno - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Nyní - + 1 minute ago Před jednou minutou - + %1 minutes ago Před %1 minutami - + 1 hour ago Před jednou hodinou - + %1 hours ago Před %1 hodinami - + 1 day ago Před jedním dnem - + %1 days ago Před %1 dny @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? Chcete ho nevratně smazat? - + + Cancel Storno - + + Delete Smazat + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Storno + + + + Delete + Smazat + DesktopView - Desktop - Plocha + Plocha @@ -96,17 +140,17 @@ Správce souborů - + Do you want to permanently delete all files from the Trash? Chcete nevratně smazat všechny soubory z koše? - + Cancel Storno - + Empty Trash Vysypat Koš @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Vlastnosti - + %1 files %1 souborů @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 položka - + %1 items %1 položek - + The file or folder %1 does not exist. Soubor nebo složka %1 neexistuje. - + Select All Vybrat vše - File Manager - Správce souborů + Správce souborů - + Open Otevřít - + Open with Otevřít s - + Cut Vyjmout - + Copy Zkopírovat - + Paste Vložit - + + New Folder Nová složka - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Přesunout do Koše - + Empty Trash Vysypat Koš - + Delete Smazat - + Rename Přejmenovat - + Open in Terminal Otevřít v Terminálu - + + Set as ... + + + + Set as Wallpaper Nastavit jako pozadí plochy - + + Set as Login Screen + + + + Properties Vlastnosti - + Change background Změnit pozadí - + Restore Obnovit + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Název + + + + Type + Typ + + + + Date + Datum + + + + Size + Velikost + + + + View + + + + Cancel + Storno + FolderPage - + Empty folder Prázdná složka - + Open Otevřít - - + + Properties Vlastnosti - + File Soubor - + New Folder Nová složka - + Quit Ukončit - + Edit Upravit - + Select All Vybrat vše - + Cut Vyjmout - + Copy Zkopírovat - + Paste Vložit - + Help Nápověda - + About O aplikaci - + + File Manager + Správce souborů + + + + A file manager designed for LingmoOS. + + + + %1 item %1 položka - + %1 items %1 položek - + %1 selected %1 vybráno - + Empty Trash Vysypat Koš + + Main + + File Manager + Správce souborů + + + Open + Otevřít + + OpenWithDialog - + No applications Žádné aplikace - + Set as default Nastavit jako výchozí - + Cancel Storno - + + Show All Apps + + + + + Open Otevřít - + Open With Otevřít s @@ -380,51 +613,56 @@ PlacesModel - + Home Domovská složka - + Desktop Plocha - + Documents Dokumenty - + Downloads Stažené - + Music Hudba - + Pictures Obrázky - + Videos Videa - + Trash Koš - - + + Drives Ovladače + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Vlastnosti - + Type: Typ souboru: - + Location: Umístění: - + Size: Velikost: - + Calculating... Počítání… - + Created: Vytvořeno: - + Modified: Upraveno: - + Accessed: Naposledy otevřeno: - + Cancel Storno - + OK OK @@ -482,6 +720,29 @@ %1 složek + + SideBar + + + Open + Otevřít + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/da_DK.ts b/translations/da_DK.ts index bfcfaee..0c9c323 100644 --- a/translations/da_DK.ts +++ b/translations/da_DK.ts @@ -14,12 +14,12 @@ Ny mappe - + Cancel Annuller - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Nu - + 1 minute ago 1 minut siden - + %1 minutes ago %1 minut siden - + 1 hour ago 1 time siden - + %1 hours ago %1 timer siden - + 1 day ago 1 dag siden - + %1 days ago %1 dage siden @@ -65,17 +65,62 @@ DeleteDialog - + Do you want to delete it permanently? Vil du slette det permanent? - + + + Cancel + Annuller + + + + + Delete + Slet + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + Cancel Annuller - + Delete Slet @@ -83,9 +128,8 @@ DesktopView - Desktop - Skrivebord + Skrivebord @@ -96,17 +140,17 @@ File Manager - + Do you want to permanently delete all files from the Trash? Ønsker du at slette alle filer permanent fra papirkurven? - + Cancel Annuller - + Empty Trash Tøm papirkurven @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Egenskaber - + %1 files %1 filer @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 element - + %1 items %1 elementer - + The file or folder %1 does not exist. Filen eller mappen %1 findes ikke. - + Select All Vælg alle - File Manager - File Manager + File Manager - + Open Åbn - + Open with Åbn med - + Cut Skær - + Copy Kopier - + Paste Indsæt - + + New Folder Ny mappe - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Flyt til papirkurven - + Empty Trash Tøm papirkurven - + Delete Slet - + Rename Omdøb - + Open in Terminal Åbn i Terminal - + + Set as ... + + + + Set as Wallpaper Indstille som tapet - + + Set as Login Screen + + + + Properties Egenskaber - + Change background Ændre baggrund - + Restore Gendan + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Navn + + + + Type + Type + + + + Date + Dato + + + + Size + Størrelse + + + + View + + + + Cancel + Annuller + FolderPage - + Empty folder Tomme mapper - + Open Åbn - - + + Properties Egenskaber - + File Fil - + New Folder Ny mappe - + Quit Forlade - + Edit Redigere - + Select All Vælg alle - + Cut Skær - + Copy Kopier - + Paste Indsæt - + Help Hjælp - + About Om - + + File Manager + File Manager + + + + A file manager designed for LingmoOS. + + + + %1 item %1 element - + %1 items %1 elementer - + %1 selected %1 valgt - + Empty Trash Tøm papirkurven + + Main + + File Manager + File Manager + + + Open + Åbn + + OpenWithDialog - + No applications Ingen ansøgninger - + Set as default Indstil som standard - + Cancel Annuller - + + Show All Apps + + + + + Open Åbn - + Open With Åbn med @@ -380,51 +613,56 @@ PlacesModel - + Home Hjem - + Desktop Skrivebord - + Documents Dokumenter - + Downloads Downloads - + Music Musik - + Pictures Billeder - + Videos Videoer - + Trash Affald - - + + Drives Kører + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Egenskaber - + Type: Type: - + Location: Beliggenhed: - + Size: Størrelse: - + Calculating... Beregning... - + Created: Oprettet: - + Modified: Ændret: - + Accessed: Tilgået: - + Cancel Annuller - + OK OK @@ -482,6 +720,29 @@ %1 filer + + SideBar + + + Open + Åbn + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/de_DE.ts b/translations/de_DE.ts index 32fbb3c..3294380 100644 --- a/translations/de_DE.ts +++ b/translations/de_DE.ts @@ -14,12 +14,12 @@ Neuer Ordner - + Cancel Abbrechen - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Jetzt - + 1 minute ago vor 1 Minute - + %1 minutes ago vor %1 Minuten - + 1 hour ago vor 1 Stunde - + %1 hours ago vor %1 Stunden - + 1 day ago vor 1 Tag - + %1 days ago vor %1 Tagen @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? Wollen Sie es endgültig löschen? - + + Cancel Abbrechen - + + Delete Löschen + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Abbrechen + + + + Delete + Löschen + DesktopView - Desktop - Schreibtisch + Schreibtisch @@ -96,17 +140,17 @@ Dateiverwaltung - + Do you want to permanently delete all files from the Trash? Wollen Sie alle Dateien dauerhaft aus dem Papierkorb löschen? - + Cancel Abbrechen - + Empty Trash Papierkorb leeren @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Eigenschaften - + %1 files %1 Dateien @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 Element - + %1 items %1 Elemente - + The file or folder %1 does not exist. Die Datei oder der Ordner %1 existiert nicht. - + Select All Alle auswählen - File Manager - Dateiverwaltung + Dateiverwaltung - + Open Öffnen - + Open with Öffnen mit - + Cut Ausschneiden - + Copy Kopieren - + Paste Einfügen - + + New Folder Neuer Ordner - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash In Papierkorb verschieben - + Empty Trash Papierkorb leeren - + Delete Löschen - + Rename Umbenennen - + Open in Terminal Im Terminal öffnen - + + Set as ... + + + + Set as Wallpaper Als Hintergrundbild festlegen - + + Set as Login Screen + + + + Properties Eigenschaften - + Change background Hintergrund ändern - + Restore Wiederherstellen + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Name + + + + Type + Typ + + + + Date + Datum + + + + Size + Größe + + + + View + + + + Cancel + Abbrechen + FolderPage - + Empty folder Leerer Ordner - + Open Öffnen - - + + Properties Eigenschaften - + File Datei - + New Folder Neuer Ordner - + Quit Beenden - + Edit Bearbeiten - + Select All Alle auswählen - + Cut Ausschneiden - + Copy Kopieren - + Paste Einfügen - + Help Hilfe - + About Über - + + File Manager + Dateiverwaltung + + + + A file manager designed for LingmoOS. + + + + %1 item %1 Element - + %1 items %1 Elemente - + %1 selected %1 ausgewählt - + Empty Trash Papierkorb leeren + + Main + + File Manager + Dateiverwaltung + + + Open + Öffnen + + OpenWithDialog - + No applications Keine Anwendungen - + Set as default Als Standard einstellen - + Cancel Abbrechen - + + Show All Apps + + + + + Open Öffnen - + Open With Öffnen mit @@ -380,51 +613,56 @@ PlacesModel - + Home Startseite - + Desktop Schreibtisch - + Documents Dokumente - + Downloads Heruntergeladene - + Music Musik - + Pictures Bilder - + Videos Videos - + Trash Papierkorb - - + + Drives Laufwerke + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Eigenschaften - + Type: Typ: - + Location: Speicherort: - + Size: Größe: - + Calculating... Berechne … - + Created: Erstellt: - + Modified: Geändert: - + Accessed: Zugegriffen: - + Cancel Abbrechen - + OK OK @@ -482,6 +720,29 @@ %1 Dateien + + SideBar + + + Open + Öffnen + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/en_US.ts b/translations/en_US.ts index 883372f..9854e52 100644 --- a/translations/en_US.ts +++ b/translations/en_US.ts @@ -27,37 +27,37 @@ DateHelper - + Now Now - + 1 minute ago 1 minute ago - + %1 minutes ago %1 minutes ago - + 1 hour ago 1 hour ago - + %1 hours ago %1 hours ago - + 1 day ago 1 day ago - + %1 days ago %1 days ago @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? Do you want to delete it permanently? - + + Cancel Cancel - + + Delete Delete + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Cancel + + + + Delete + Delete + DesktopView - Desktop - Desktop + Desktop @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Properties - + %1 files %1 files @@ -127,128 +171,267 @@ FolderModel - + %1 item %1 item - + %1 items %1 items - + The file or folder %1 does not exist. The file or folder %1 does not exist. - + Select All Select All - File Manager - File Manager + File Manager - + Open Open - + Open with Open with - + Cut Cut - + Copy Copy - + Paste Paste - - + + New Folder New Folder - - + + New Text New Text - - + + New Documents New Document - + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Move To Trash - + Empty Trash Empty Trash - + Delete Delete - + Rename Rename - + Open in Terminal Open in Terminal - + + Set as ... + + + + Set as Wallpaper Set as Wallpaper - + + Set as Login Screen + + + + Properties Properties - + Change background Change background - + Restore Restore - + Show hidden files Show hidden files - + Open in new window Open in new window + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Name + + + + Type + Type + + + + Date + Date + + + + Size + Size + + + + View + + + + Cancel + Cancel + FolderPage @@ -349,30 +532,47 @@ Empty Trash + + Main + + File Manager + File Manager + + + Open + Open + + OpenWithDialog - + No applications No applications - + Set as default Set as default - + Cancel Cancel - + + Show All Apps + + + + + Open Open - + Open With Open With @@ -413,53 +613,53 @@ PlacesModel - + Home Home - + Desktop Desktop - + Documents Documents - + Downloads Downloads - + Music Music - + Pictures Pictures - + Videos Videos - + Trash Trash - - + + Drives Drives - + Computer Computer @@ -515,22 +715,22 @@ SideBar - + Open Open - + Open in new window Open in new window - + Eject Eject - + Unmount Unmount diff --git a/translations/eo_XX.ts b/translations/eo_XX.ts index df36887..b7b674a 100644 --- a/translations/eo_XX.ts +++ b/translations/eo_XX.ts @@ -14,12 +14,12 @@ - + Cancel - + OK @@ -27,37 +27,37 @@ DateHelper - + Now - + 1 minute ago - + %1 minutes ago - + 1 hour ago - + %1 hours ago - + 1 day ago - + %1 days ago @@ -65,26 +65,63 @@ DeleteDialog - + Do you want to delete it permanently? - + + Cancel - + + Delete + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + - DesktopView + DeleteDialogForever - - Desktop + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + + + + + Delete @@ -96,17 +133,17 @@ - + Do you want to permanently delete all files from the Trash? - + Cancel - + Empty Trash @@ -114,12 +151,12 @@ FilePropertiesDialog - + Properties - + %1 files @@ -127,191 +164,355 @@ FolderModel - + %1 item - + %1 items - + The file or folder %1 does not exist. - + Select All - - File Manager - - - - + Open - + Open with - + Cut - + Copy - + Paste - + + New Folder - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash - + Empty Trash - + Delete - + Rename - + Open in Terminal - + + Set as ... + + + + Set as Wallpaper - + + Set as Login Screen + + + + Properties - + Change background - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + + + + + Type + + + + + Date + + + + + Size + + + + + View + + FolderPage - + Empty folder - + Open - - + + Properties - + File - + New Folder - + Quit - + Edit - + Select All - + Cut - + Copy - + Paste - + Help - + About - + + File Manager + + + + + A file manager designed for LingmoOS. + + + + %1 item - + %1 items - + %1 selected - + Empty Trash @@ -319,28 +520,34 @@ OpenWithDialog - + + Open With + + + + No applications - + Set as default - + Cancel - - Open + + Show All Apps - - Open With + + + Open @@ -380,100 +587,128 @@ PlacesModel - + Home - + Desktop - + Documents - + Downloads - + Music - + Pictures - + Videos - + Trash - - + + Drives + + + Computer + + PropertiesDialog - + Type: - + Location: - + Size: - + Calculating... - + Created: - + Modified: - + Accessed: - + Cancel - + OK + + SideBar + + + Open + + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/es_ES.ts b/translations/es_ES.ts index c5b806c..e65f29e 100644 --- a/translations/es_ES.ts +++ b/translations/es_ES.ts @@ -14,12 +14,12 @@ Nueva carpeta - + Cancel Cancelar - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Ahora - + 1 minute ago hace 1 minuto - + %1 minutes ago hace %1 minutos - + 1 hour ago hace 1 hora - + %1 hours ago hace %1 horas - + 1 day ago hace 1 día - + %1 days ago hace %1 días @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? ¿Quieres eliminarlo permanentemente? - + + Cancel Cancelar - + + Delete Eliminar + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Cancelar + + + + Delete + Eliminar + DesktopView - Desktop - Escritorio + Escritorio @@ -96,17 +140,17 @@ Administrador de Archivos - + Do you want to permanently delete all files from the Trash? ¿Quieres borrar de forma permanente todos los archivos de la Papelera? - + Cancel Cancelar - + Empty Trash Vaciar Papelera @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Propiedades - + %1 files %1 archivos @@ -127,219 +171,404 @@ FolderModel - + %1 item artículo %1 - + %1 items Artículos %1 - + The file or folder %1 does not exist. El archivo o carpeta %1 no existe. - + Select All Seleccionar Todo - File Manager - Administrador de archivos + Administrador de archivos - + Open Abrir - + Open with Abrir con - + Cut Cortar - + Copy Copiar - + Paste Pegar - + + New Folder Nueva Carpeta - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Mover a la Papelera - + Empty Trash Vaciar Papelera - + Delete Eliminar - + Rename Renombrar - + Open in Terminal Abrir en la Terminal - + + Set as ... + + + + Set as Wallpaper Configurar cómo Papel Tapiz - + + Set as Login Screen + + + + Properties Propiedades - + Change background Cambiar fondo - + Restore Restaurar + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Nombre + + + + Type + Tipo + + + + Date + Fecha + + + + Size + Tamaño + + + + View + + + + Cancel + Cancelar + FolderPage - + Empty folder Carpeta vacía - + Open Abrir - - + + Properties Propiedades - + File Archivo - + New Folder Carpeta nueva - + Quit Abandonar - + Edit Editar - + Select All Seleccionar todo - + Cut Cortar - + Copy Copiar - + Paste Pegar - + Help Ayuda - + About Acerca de - + + File Manager + + + + + A file manager designed for LingmoOS. + + + + %1 item %1 artículo - + %1 items %1 artículos - + %1 selected %1 seleccionado - + Empty Trash Papelera Vacía + + Main + + Open + Abrir + + OpenWithDialog - + No applications Sin aplicaciones - + Set as default Establecer por defecto - + Cancel Cancelar - + + Show All Apps + + + + + Open Abrir - + Open With Abrir con @@ -380,51 +609,56 @@ PlacesModel - + Home Hogar - + Desktop Escritorio - + Documents Documentos - + Downloads Descargas - + Music Música - + Pictures Imágenes - + Videos Vídeos - + Trash Papelera - - + + Drives Drives + + + Computer + + PropertiesDialog @@ -433,47 +667,47 @@ Propiedades - + Type: Tipo: - + Location: Ubicación: - + Size: Tamaño: - + Calculating... Calculando... - + Created: Creado: - + Modified: Modificado: - + Accessed: Accedido: - + Cancel Cancelar - + OK OK @@ -482,6 +716,29 @@ %1 archivos + + SideBar + + + Open + Abrir + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/es_MX.ts b/translations/es_MX.ts index 60e8b2d..0c6343c 100644 --- a/translations/es_MX.ts +++ b/translations/es_MX.ts @@ -14,12 +14,12 @@ Nueva carpeta - + Cancel Cancelar - + OK De acuerdo @@ -27,37 +27,37 @@ DateHelper - + Now Ahora - + 1 minute ago Hace un minuto - + %1 minutes ago Hace %1 minutos - + 1 hour ago Hace 1 hora - + %1 hours ago Hace %1 horas - + 1 day ago Hace 1 día - + %1 days ago Hace %1 días @@ -65,17 +65,62 @@ DeleteDialog - + Do you want to delete it permanently? ¿Quieres eliminarlo permanentemente? - + + Cancel Cancelar - + + + Delete + Eliminar + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Cancelar + + + Delete Eliminar @@ -83,9 +128,8 @@ DesktopView - Desktop - Escritorio + Escritorio @@ -96,17 +140,17 @@ Gestor de Archivos - + Do you want to permanently delete all files from the Trash? ¿Quieres eliminar permanentemente todos los archivos de la Papelera? - + Cancel Cancelar - + Empty Trash Papelera Vacía @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Propiedades - + %1 files %1 archivos @@ -127,219 +171,404 @@ FolderModel - + %1 item %1 elemento - + %1 items %1 elementos - + The file or folder %1 does not exist. El archivo o carpeta %1 no existe. - + Select All Seleccionar Todo - File Manager - Administrador de archivos + Administrador de archivos - + Open Abrir - + Open with Abrir con - + Cut Cortar - + Copy Copiar - + Paste Pegar - + + New Folder Nueva Carpeta - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Mover a la Papelera - + Empty Trash Papelera vacía - + Delete Eliminar - + Rename Renombrar - + Open in Terminal Abrir en la Terminal - + + Set as ... + + + + Set as Wallpaper Establecer como fondo de pantalla - + + Set as Login Screen + + + + Properties Propiedades - + Change background Cambiar fondo - + Restore Restaurar + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Nombre + + + + Type + Tipo + + + + Date + Fecha + + + + Size + Tamaño + + + + View + + + + Cancel + Cancelar + FolderPage - + Empty folder Carpeta vacía - + Open Abrir - - + + Properties Propiedades - + File Archivo - + New Folder Nueva Carpeta - + Quit Quitar - + Edit Editar - + Select All Seleccionar Todo - + Cut Cortar - + Copy Copiar - + Paste Pegar - + Help Ayuda - + About Acerca de - + + File Manager + + + + + A file manager designed for LingmoOS. + + + + %1 item %1 elemento - + %1 items %1 elementos - + %1 selected %1 seleccionado - + Empty Trash Papelera vacía + + Main + + Open + Abrir + + OpenWithDialog - + No applications Sin aplicaciones - + Set as default Establecer como predeterminado - + Cancel Cancelar - + + Show All Apps + + + + + Open Abrir - + Open With Abrir con @@ -380,51 +609,56 @@ PlacesModel - + Home Inicio - + Desktop Escritorio - + Documents Documentos - + Downloads Descargas - + Music Música - + Pictures Imágenes - + Videos Vídeos - + Trash Papelera - - + + Drives + + + Computer + + PropertiesDialog @@ -433,47 +667,47 @@ Propiedades - + Type: Tipo: - + Location: Ubicación: - + Size: Tamaño: - + Calculating... Calculando... - + Created: Creado: - + Modified: Modificado: - + Accessed: Accedido: - + Cancel Cancelar - + OK De acuerdo @@ -482,6 +716,29 @@ %1 archivos + + SideBar + + + Open + Abrir + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/fa_IR.ts b/translations/fa_IR.ts index 736d820..af7299c 100644 --- a/translations/fa_IR.ts +++ b/translations/fa_IR.ts @@ -14,12 +14,12 @@ پوشه جدید - + Cancel لغو کردن - + OK ساختن @@ -27,37 +27,37 @@ DateHelper - + Now اکنون - + 1 minute ago ۱ دقیقه قبل - + %1 minutes ago %1 دقیقه قبل - + 1 hour ago ۱ ساعت قبل - + %1 hours ago %1 ساعت قبل - + 1 day ago ۱ روز قبل - + %1 days ago %1 روز قبل @@ -65,17 +65,62 @@ DeleteDialog - + Do you want to delete it permanently? - + + + Cancel + لغو کردن + + + + + Delete + حذف + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + Cancel لغو کردن - + Delete حذف @@ -83,9 +128,8 @@ DesktopView - Desktop - دسکتاپ + دسکتاپ @@ -96,17 +140,17 @@ مدیر پرونده - + Do you want to permanently delete all files from the Trash? آیا میخواهید تمام فایل‌ها را از زباله‌‌دانی حذف کنید؟ - + Cancel لغو کردن - + Empty Trash خالی کردن زباله‌دانی @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties خواص - + %1 files %1 پرونده @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 مورد - + %1 items %1 مورد - + The file or folder %1 does not exist. - + Select All انتخاب همه - File Manager - مدیر پرونده + مدیر پرونده - + Open باز کردن - + Open with - + Cut برش - + Copy رونوشت - + Paste چسباندن - + + New Folder پوشه جدید - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash انتقال به سطل زباله - + Empty Trash خالی کردن سطل زباله - + Delete حذف - + Rename تغییر نام - + Open in Terminal باز کردن در ترمینال - + + Set as ... + + + + Set as Wallpaper تنظیم به عنوان تصویر زمینه - + + Set as Login Screen + + + + Properties خواص - + Change background تغییر پیش‌زمینه - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + نام + + + + Type + + + + + Date + تاریخ + + + + Size + اندازه + + + + View + + + + Cancel + لغو کردن + FolderPage - + Empty folder خالی کردن پوشه - + Open باز کردن - - + + Properties خواص - + File - + New Folder پوشه جدید - + Quit - + Edit - + Select All انتخاب همه - + Cut برش - + Copy رونوشت - + Paste چسباندن - + Help - + About - + + File Manager + مدیر پرونده + + + + A file manager designed for LingmoOS. + + + + %1 item %1 مورد - + %1 items %1 مورد - + %1 selected %1 انتخاب شده - + Empty Trash خالی کردن زباله‌دانی + + Main + + File Manager + مدیر پرونده + + + Open + باز کردن + + OpenWithDialog - + No applications - + Set as default - + Cancel لغو کردن - + + Show All Apps + + + + + Open باز کردن - + Open With @@ -380,51 +613,56 @@ PlacesModel - + Home خانه - + Desktop دسکتاپ - + Documents اسناد - + Downloads بارگیری‌ها - + Music موسیقی - + Pictures تصاویر - + Videos ویدئوها - + Trash زباله‌دانی - - + + Drives + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ خواص - + Type: نوع: - + Location: مکان: - + Size: اندازه: - + Calculating... در حال محاسبه... - + Created: ساخته شده: - + Modified: اصلاح شده: - + Accessed: دسترسی: - + Cancel لغو کردن - + OK پذیرفتن @@ -482,6 +720,29 @@ %1 پرونده + + SideBar + + + Open + باز کردن + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/fi_FI.ts b/translations/fi_FI.ts index cea9d78..f16c689 100644 --- a/translations/fi_FI.ts +++ b/translations/fi_FI.ts @@ -14,12 +14,12 @@ Uusi kansio - + Cancel Peruuta - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Nyt - + 1 minute ago 1 minuutti sitten - + %1 minutes ago %1 minuuttia sitten - + 1 hour ago 1 tunti sitten - + %1 hours ago %1 tuntia sitten - + 1 day ago 1 päivä sitten - + %1 days ago %1 päivää sitten @@ -65,17 +65,62 @@ DeleteDialog - + Do you want to delete it permanently? - + + + Cancel + Peruuta + + + + + Delete + Poista + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + Cancel Peruuta - + Delete Poista @@ -83,9 +128,8 @@ DesktopView - Desktop - Työpöytä + Työpöytä @@ -96,17 +140,17 @@ Tiedostoselain - + Do you want to permanently delete all files from the Trash? Haluatko poistaa kaikki tiedostot pysyvästi Roskakorista? - + Cancel Peruuta - + Empty Trash Tyhjennä roskakori @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Ominaisuudet - + %1 files %1 tiedostoa @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 kohde - + %1 items %1 kohdetta - + The file or folder %1 does not exist. - + Select All Valitse kaikki - File Manager - Tiedostoselain + Tiedostoselain - + Open Avaa - + Open with - + Cut Leikkaa - + Copy Kopioi - + Paste Liitä - + + New Folder Uusi kansio - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Siirrä roskakoriin - + Empty Trash Tyhjennä roskakori - + Delete Poista - + Rename Nimeä uudell. - + Open in Terminal Avaa terminaalissa - + + Set as ... + + + + Set as Wallpaper Aseta taustakuvaksi - + + Set as Login Screen + + + + Properties Ominaisuudet - + Change background Muuta tausta - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Nimi + + + + Type + + + + + Date + Päivämäärä + + + + Size + Koko + + + + View + + + + Cancel + Peruuta + FolderPage - + Empty folder Tyhjä kansio - + Open Avaa - - + + Properties Ominaisuudet - + File - + New Folder Uusi kansio - + Quit - + Edit - + Select All Valitse kaikki - + Cut Leikkaa - + Copy Kopioi - + Paste Liitä - + Help - + About - + + File Manager + Tiedostoselain + + + + A file manager designed for LingmoOS. + + + + %1 item %1 kohde - + %1 items %1 kohdetta - + %1 selected %1 valittu - + Empty Trash Tyhjennä roskakori + + Main + + File Manager + Tiedostoselain + + + Open + Avaa + + OpenWithDialog - + No applications - + Set as default - + Cancel Peruuta - + + Show All Apps + + + + + Open Avaa - + Open With @@ -380,51 +613,56 @@ PlacesModel - + Home Etusivu - + Desktop Työpöytä - + Documents Asiakirjat - + Downloads Lataukset - + Music Musiikki - + Pictures Kuvat - + Videos Videot - + Trash Roskakori - - + + Drives + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Ominaisuudet - + Type: Tyyppi: - + Location: Sijainti: - + Size: Koko: - + Calculating... Lasketaan… - + Created: Luotu: - + Modified: Muutettu: - + Accessed: Käytetty: - + Cancel Peruuta - + OK OK @@ -482,6 +720,29 @@ %1 tiedostoa + + SideBar + + + Open + Avaa + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/fr_FR.ts b/translations/fr_FR.ts index b3bfae9..e1f808e 100644 --- a/translations/fr_FR.ts +++ b/translations/fr_FR.ts @@ -14,12 +14,12 @@ Nouveau dossier - + Cancel Annuler - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Maintenant - + 1 minute ago il y a 1 minute - + %1 minutes ago il y a %1 minutes - + 1 hour ago il y a 1 heure - + %1 hours ago il y a %1 heures - + 1 day ago il y a 1 jour - + %1 days ago il y a %1 jours @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? Voulez-vous le supprimer définitivement ? - + + Cancel Annuler - + + Delete Supprimer + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Annuler + + + + Delete + Supprimer + DesktopView - Desktop - Bureau + Bureau @@ -96,17 +140,17 @@ Gestionnaire de fichiers - + Do you want to permanently delete all files from the Trash? Voulez-vous supprimer définitivement tous les fichiers de la corbeille ? - + Cancel Annuler - + Empty Trash Vider la corbeille @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Propriétés - + %1 files %1 fichiers @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 élément - + %1 items %1 éléments - + The file or folder %1 does not exist. Le fichier ou le dossier %1 n'existe pas. - + Select All Tout sélectionner - File Manager - Gestionnaire de fichiers + Gestionnaire de fichiers - + Open Ouvrir - + Open with Ouvrir avec - + Cut Couper - + Copy Copier - + Paste Coller - + + New Folder Nouveau dossier - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Déplacer dans la Corbeille - + Empty Trash Vider la corbeille - + Delete Supprimer - + Rename Renommer - + Open in Terminal Ouvrir dans le terminal - + + Set as ... + + + + Set as Wallpaper Définir comme fond d'écran - + + Set as Login Screen + + + + Properties Propriétés - + Change background Modifier l'arrière-plan - + Restore Restaurer + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Nom + + + + Type + Type + + + + Date + Date + + + + Size + Taille + + + + View + + + + Cancel + Annuler + FolderPage - + Empty folder Dossier vide - + Open Ouvrir - - + + Properties Propriétés - + File Fichier - + New Folder Nouveau dossier - + Quit Quitter - + Edit Modifier - + Select All Tout sélectionner - + Cut Couper - + Copy Copier - + Paste Coller - + Help Aide - + About À propos - + + File Manager + Gestionnaire de fichiers + + + + A file manager designed for LingmoOS. + + + + %1 item %1 élément - + %1 items %1 éléments - + %1 selected %1 sélectionnés - + Empty Trash Vider la corbeille + + Main + + File Manager + Gestionnaire de fichiers + + + Open + Ouvrir + + OpenWithDialog - + No applications Aucune application - + Set as default Définir comme par défaut - + Cancel Annuler - + + Show All Apps + + + + + Open Ouvrir - + Open With Ouvrir avec @@ -380,51 +613,56 @@ PlacesModel - + Home Accueil - + Desktop Bureau - + Documents Documents - + Downloads Téléchargements - + Music Musique - + Pictures Images - + Videos Vidéos - + Trash Corbeille - - + + Drives Disques + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Propriétés - + Type: Type : - + Location: Emplacement : - + Size: Taille : - + Calculating... Calcul… - + Created: Créé le : - + Modified: Modifié le : - + Accessed: Accès le : - + Cancel Annuler - + OK OK @@ -482,6 +720,29 @@ %1 fichiers + + SideBar + + + Open + Ouvrir + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/he_IL.ts b/translations/he_IL.ts index a56bf72..2cd32a5 100644 --- a/translations/he_IL.ts +++ b/translations/he_IL.ts @@ -14,12 +14,12 @@ תיקייה חדשה - + Cancel ביטול - + OK אישור @@ -27,37 +27,37 @@ DateHelper - + Now עכשיו - + 1 minute ago לפני דקה - + %1 minutes ago לפני %1 דקות - + 1 hour ago לפני שעה - + %1 hours ago לפני %1 שעות - + 1 day ago לפני יום אחד - + %1 days ago לפני %1 ימים @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? האם ברצונך למחוק אותו לצמיתות? - + + Cancel ביטול - + + Delete מחק + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + ביטול + + + + Delete + מחק + DesktopView - Desktop - שולחן העבודה + שולחן העבודה @@ -96,17 +140,17 @@ מנהל הקבצים - + Do you want to permanently delete all files from the Trash? האם אתה בטוח כי ברצונך למחוק לצמיתות את כל הקבצים בפח האשפה? - + Cancel ביטול - + Empty Trash רוקן את פח האשפה @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties מאפיינים - + %1 files %1 קבצים @@ -127,219 +171,408 @@ FolderModel - + %1 item פריט אחד - + %1 items %1 פריטים - + The file or folder %1 does not exist. הקובץ או התיקייה %1 לא קיימת. - + Select All בחר הכל - File Manager - מנהל הקבצים + מנהל הקבצים - + Open פתח - + Open with פתח באמצעות - + Cut גזור - + Copy העתק - + Paste הדבק - + + New Folder תיקייה חדשה - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash העבר לאשפה - + Empty Trash רוקן את פח האשפה - + Delete מחק - + Rename שנה שם - + Open in Terminal פתח בשורת הפקודות - + + Set as ... + + + + Set as Wallpaper קבע כרקע שולחן העבודה - + + Set as Login Screen + + + + Properties מאפיינים - + Change background שנה רקע - + Restore שחזר + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + שם + + + + Type + סוג + + + + Date + תאריך + + + + Size + גודל + + + + View + + + + Cancel + ביטול + FolderPage - + Empty folder מחק את הקבצים בתיקייה - + Open פתח - - + + Properties מאפיינים - + File קובץ - + New Folder קובץ חדש - + Quit יציאה - + Edit ערוך - + Select All בחר הכל - + Cut גזור - + Copy העתק - + Paste הדבק - + Help עזרה - + About אודות - + + File Manager + מנהל הקבצים + + + + A file manager designed for LingmoOS. + + + + %1 item פריט אחד - + %1 items %1 פריטים - + %1 selected %1 נבחרו - + Empty Trash רוקן את פח האשפה + + Main + + File Manager + מנהל הקבצים + + + Open + פתח + + OpenWithDialog - + No applications אין אפליקציות - + Set as default קבע כברירת מחדל - + Cancel ביטול - + + Show All Apps + + + + + Open פתח - + Open With פתח באמצעות @@ -380,100 +613,128 @@ PlacesModel - + Home בית - + Desktop שולחן העבודה - + Documents מסמכים - + Downloads הורדות - + Music מוזיקה - + Pictures תמונות - + Videos סרטונים - + Trash פח האשפה - - + + Drives כוננים + + + Computer + + PropertiesDialog - + Type: סוג: - + Location: מיקום: - + Size: גודל: - + Calculating... מחשב... - + Created: תאריך יצירה: - + Modified: תאריך שינוי: - + Accessed: פעם אחרונה נפתח: - + Cancel ביטול - + OK אישור + + SideBar + + + Open + פתח + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/hi_IN.ts b/translations/hi_IN.ts index 022c72d..51833a8 100644 --- a/translations/hi_IN.ts +++ b/translations/hi_IN.ts @@ -4,22 +4,22 @@ CreateFolderDialog - + New folder name नया फ़ोल्डर का नाम - + New folder नया फोल्डर - + Cancel निरस्त करें - + OK ठीक @@ -27,37 +27,37 @@ DateHelper - + Now अभी - + 1 minute ago 1 मिनट पहले - + %1 minutes ago %1 मिनट पहले - + 1 hour ago 1 घंटा पहले - + %1 hours ago %1 घंटा पहले - + 1 day ago 1 दिन पहले - + %1 days ago %1 दिन पहले @@ -65,48 +65,92 @@ DeleteDialog - + Do you want to delete it permanently? क्या आप इसे स्थायी रूप से मिटाना चाहते हैं? - + + Cancel निरस्त करें - + + Delete मिटाये + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + निरस्त करें + + + + Delete + मिटाये + DesktopView - Desktop - डेस्कटॉप + डेस्कटॉप EmptyTrashDialog - + File Manager फ़ाइल प्रबंधक - + Do you want to permanently delete all files from the Trash? क्या आप ट्रैश से सभी फ़ाइलें स्थायी रूप से मिटाना चाहते हैं? - + Cancel निरस्त करें - + Empty Trash ट्रैश खाली करें @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties गुण - + %1 files %1 फ़ाइलें @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 वस्तु - + %1 items %1 वस्तुये - + The file or folder %1 does not exist. फ़ाइल या फ़ोल्डर %1 मौजूद नहीं है। - + Select All सब चुने - File Manager - फ़ाइल प्रबंधक + फ़ाइल प्रबंधक - + Open खोले - + Open with अन्य अनुप्रयोग में खोले - + Cut कट करना - + Copy प्रतिलिपि बनाना - + Paste (पेस्ट) यहाँ रखे - + + New Folder नया फोल्डर - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash ट्रैश में भेजो - + Empty Trash ट्रैश खाली करो - + Delete - + Rename मिटाये - + Open in Terminal टर्मिनल में खोलें - + + Set as ... + + + + Set as Wallpaper वॉलपेपर के रूप में सेट - + + Set as Login Screen + + + + Properties गुण - + Change background बैकग्राउंड बदलें - + Restore लौटाए + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + नाम + + + + Type + प्रकार + + + + Date + दिनांक + + + + Size + आकार + + + + View + + + + Cancel + निरस्त करें + FolderPage - + Empty folder फ़ोल्डर खाली करे - + Open खोले - - + + Properties गुण - + File फ़ाइल - + New Folder नया फोल्डर - + Quit बंद करे - + Edit संपादित करें - + Select All सब चुने - + Cut कट करें - + Copy कापी करें - + Paste (पेस्ट) यहाँ रखे - + Help मदद - + About बारे में - + + File Manager + फ़ाइल प्रबंधक + + + + A file manager designed for LingmoOS. + + + + %1 item %1 वस्तु - + %1 items %1 वस्तुए - + %1 selected %1 चुने हुए - + Empty Trash कचरा (ट्रैश) खाली करें + + Main + + File Manager + फ़ाइल प्रबंधक + + + Open + खोले + + OpenWithDialog - + No applications कोई अनुप्रयोग (एप्लीकेशन) नहीं - + Set as default डिफाल्ट के रूप में सेट - + Cancel निरस्त करें - + + Show All Apps + + + + + Open खोले - + Open With अन्य अनुप्रयोग (एप्लीकेशन) में खोले @@ -347,32 +580,32 @@ OptionsMenu - + Icons चिह्न - + List सूची - + Name नाम - + Date दिनांक - + Type प्रकार - + Size आकार @@ -380,104 +613,132 @@ PlacesModel - + Home होम - + Desktop डेस्कटॉप - + Documents डाक्यूमेंट - + Downloads डाउनलोड - + Music संगीत - + Pictures चित्र - + Videos वीडियो - + Trash ट्रैश - - + + Drives ड्राइव + + + Computer + + PropertiesDialog - + Type: प्रकार: - + Location: स्थान: - + Size: आकार: - + Calculating... परिकलन जारी है... - + Created: बनने का समय: - + Modified: संसोधन का समय: - + Accessed: इस्तेमाल का समय: - + Cancel निरस्त करें - + OK ठीक + + SideBar + + + Open + खोले + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main - + File Manager फ़ाइल प्रबंधक diff --git a/translations/hu_HU.ts b/translations/hu_HU.ts index 7c0368e..fbcebd7 100644 --- a/translations/hu_HU.ts +++ b/translations/hu_HU.ts @@ -14,12 +14,12 @@ Új mappa - + Cancel Mégsem - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Most - + 1 minute ago 1 perccel ezelőtt - + %1 minutes ago %1 perccel ezelőtt - + 1 hour ago 1 órával ezelőtt - + %1 hours ago %1 órával ezelőtt - + 1 day ago 1 nappal ezelőtt - + %1 days ago %1 nappal ezelőtt @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? Végleg törölni szeretné? - + + Cancel Mégsem - + + Delete Törlés + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Mégsem + + + + Delete + Törlés + DesktopView - Desktop - Asztal + Asztal @@ -96,17 +140,17 @@ Fájlkezelő - + Do you want to permanently delete all files from the Trash? Végleg törölni szeretne minden fájlt a Kukából? - + Cancel Mégsem - + Empty Trash Kuka ürítése @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Tulajdonságok - + %1 files %1 fájl @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 elem - + %1 items %1 elem(ek) - + The file or folder %1 does not exist. A %1 fájl vagy mappa nem létezik. - + Select All Összes kijelölése - File Manager - Fájlkezelő + Fájlkezelő - + Open Megnyitás - + Open with Megnyitás ezzel - + Cut Kivágás - + Copy Másolás - + Paste Beillesztés - + + New Folder Új mappa - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Áthelyezés a Kukába - + Empty Trash Kuka ürítése - + Delete Törlés - + Rename Átnevezés - + Open in Terminal Megnyitás a Terminálban - + + Set as ... + + + + Set as Wallpaper Beállítás háttérképként - + + Set as Login Screen + + + + Properties Tulajdonságok - + Change background Háttér megváltoztatása - + Restore Visszaállítás + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Név + + + + Type + Típus + + + + Date + Dátum + + + + Size + Méret + + + + View + + + + Cancel + Mégsem + FolderPage - + Empty folder Üres mappa - + Open Megnyitás - - + + Properties Tulajdonságok - + File Fájl - + New Folder Új mappa - + Quit Kilépés - + Edit Szerkesztés - + Select All Összes kijelölése - + Cut Kivágás - + Copy Másolás - + Paste Beillesztés - + Help Segítség - + About Rólunk - + + File Manager + Fájlkezelő + + + + A file manager designed for LingmoOS. + + + + %1 item %1 elem - + %1 items %1 elem(ek) - + %1 selected %1 kiválasztva - + Empty Trash Kuka kiürítése + + Main + + File Manager + Fájlkezelő + + + Open + Megnyitás + + OpenWithDialog - + No applications Nincsenek alkalmazások - + Set as default Beállítás alapértelmezettként - + Cancel Mégsem - + + Show All Apps + + + + + Open Megnyitás - + Open With Megnyitás ezzel @@ -380,51 +613,56 @@ PlacesModel - + Home Saját mappa - + Desktop Asztal - + Documents Dokumentumok - + Downloads Letöltések - + Music Zene - + Pictures Képek - + Videos Videók - + Trash Kuka - - + + Drives Meghajtók + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Tulajdonságok - + Type: Típus: - + Location: Hely: - + Size: Méret: - + Calculating... Számítás... - + Created: Létrehozva: - + Modified: Módosítva: - + Accessed: Hozzáférés: - + Cancel Mégsem - + OK OK @@ -482,6 +720,29 @@ %1 fájl + + SideBar + + + Open + Megnyitás + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/id_ID.ts b/translations/id_ID.ts index 343f4a6..03ae5d7 100644 --- a/translations/id_ID.ts +++ b/translations/id_ID.ts @@ -14,12 +14,12 @@ Folder baru - + Cancel Batal - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Sekarang - + 1 minute ago 1 menit yang lalu - + %1 minutes ago %1 menit yang lalu - + 1 hour ago 1 jam yang lalu - + %1 hours ago %1 jam yang lalu - + 1 day ago 1 hari yang lalu - + %1 days ago %1 hari yang lalu @@ -65,17 +65,62 @@ DeleteDialog - + Do you want to delete it permanently? - + + + Cancel + Batal + + + + + Delete + Hapus + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + Cancel Batal - + Delete Hapus @@ -83,9 +128,8 @@ DesktopView - Desktop - Desktop + Desktop @@ -96,17 +140,17 @@ Manajer Berkas - + Do you want to permanently delete all files from the Trash? Apakah Anda ingin menghapus semua file secara permanen dari Sampah? - + Cancel Batal - + Empty Trash Sampah Kosong @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Properti - + %1 files %1 berkas @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 butir - + %1 items %1 butir - + The file or folder %1 does not exist. - + Select All Pilih Semua - File Manager - Manajer Berkas + Manajer Berkas - + Open Buka - + Open with - + Cut Potong - + Copy Salin - + Paste Tempel - + + New Folder Folder Baru - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Pindahkan ke Sampah - + Empty Trash Sampah Kosong - + Delete Hapus - + Rename Ubah Nama - + Open in Terminal Buka di Terminal - + + Set as ... + + + + Set as Wallpaper Pasang sebagai Wallpaper - + + Set as Login Screen + + + + Properties Properti - + Change background Ubah latar belakang - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Nama + + + + Type + + + + + Date + Tanggal + + + + Size + Ukuran + + + + View + + + + Cancel + Batal + FolderPage - + Empty folder Folder kosong - + Open Buka - - + + Properties Properti - + File - + New Folder Folder Baru - + Quit - + Edit - + Select All Pilih Semua - + Cut Potong - + Copy Salin - + Paste Tempel - + Help - + About - + + File Manager + Manajer Berkas + + + + A file manager designed for LingmoOS. + + + + %1 item %1 butir - + %1 items %1 butir - + %1 selected %1 terpilih - + Empty Trash Sampah Kosong + + Main + + File Manager + Manajer Berkas + + + Open + Buka + + OpenWithDialog - + No applications - + Set as default - + Cancel Batal - + + Show All Apps + + + + + Open Buka - + Open With @@ -380,51 +613,56 @@ PlacesModel - + Home Rumah - + Desktop Desktop - + Documents Dokumen - + Downloads Unduhan - + Music Musik - + Pictures Gambar - + Videos Video - + Trash Sampah - - + + Drives + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Properti - + Type: Tipe: - + Location: Lokasi: - + Size: Ukuran: - + Calculating... Menghitung... - + Created: Dibuat: - + Modified: Diubah: - + Accessed: Diakses: - + Cancel Batal - + OK OK @@ -482,6 +720,29 @@ %1 berkas + + SideBar + + + Open + Buka + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/ie.ts b/translations/ie.ts index 2d6502a..79a3b86 100644 --- a/translations/ie.ts +++ b/translations/ie.ts @@ -14,12 +14,12 @@ Nov fólder - + Cancel Anullar - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Nu - + 1 minute ago ante 1 minute - + %1 minutes ago ante %1 minutes - + 1 hour ago ante 1 hor - + %1 hours ago ante %1 hores - + 1 day ago ante 1 die - + %1 days ago ante %1 dies @@ -65,17 +65,62 @@ DeleteDialog - + Do you want to delete it permanently? - + + + Cancel + Anullar + + + + + Delete + Remover + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + Cancel Anullar - + Delete Remover @@ -83,9 +128,8 @@ DesktopView - Desktop - Pupitre + Pupitre @@ -96,17 +140,17 @@ Gerente de files - + Do you want to permanently delete all files from the Trash? Esque vu vole remover permanentmen omni files ex li Paper-corb? - + Cancel Anullar - + Empty Trash Vacuar li Paper-corb @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Proprietás - + %1 files %1 files @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 element - + %1 items %1 elementes - + The file or folder %1 does not exist. - + Select All Selecter omnicos - File Manager - Gerente de files + Gerente de files - + Open Aperter - + Open with - + Cut Exciser - + Copy Copiar - + Paste Collar - + + New Folder Crear un fólder - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Mover al Paper-corb - + Empty Trash Vacuar li Paper-corb - + Delete Remover - + Rename Renominar - + Open in Terminal Aperter in li terminale - + + Set as ... + + + + Set as Wallpaper Assignar quam tapete - + + Set as Login Screen + + + + Properties Proprietás - + Change background Cambiar li funde - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Nómine + + + + Type + + + + + Date + Date + + + + Size + Grandore + + + + View + + + + Cancel + Anullar + FolderPage - + Empty folder Vacui fólder - + Open Aperter - - + + Properties Proprietás - + File - + New Folder Crear un fólder - + Quit - + Edit - + Select All Selecter omnicos - + Cut Exciser - + Copy Copiar - + Paste Collar - + Help - + About - + + File Manager + Gerente de files + + + + A file manager designed for LingmoOS. + + + + %1 item %1 element - + %1 items %1 elementes - + %1 selected %1 selectet - + Empty Trash Vacuar li Paper-corb + + Main + + File Manager + Gerente de files + + + Open + Aperter + + OpenWithDialog - + No applications - + Set as default - + Cancel Anullar - + + Show All Apps + + + + + Open Aperter - + Open With @@ -380,51 +613,56 @@ PlacesModel - + Home Hem-fólder - + Desktop Pupitre - + Documents Documentes - + Downloads Descargates - + Music Musica - + Pictures Images - + Videos Videos - + Trash Paper-corb - - + + Drives + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Proprietás - + Type: Tip: - + Location: Localisation: - + Size: Grandore: - + Calculating... Calculante... - + Created: Creat: - + Modified: Modificat: - + Accessed: Accessat: - + Cancel Anullar - + OK OK @@ -482,6 +720,29 @@ %1 files + + SideBar + + + Open + Aperter + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/it_IT.ts b/translations/it_IT.ts index de2d2d7..de061cc 100644 --- a/translations/it_IT.ts +++ b/translations/it_IT.ts @@ -14,12 +14,12 @@ Nuova cartella - + Cancel Annulla - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Adesso - + 1 minute ago 1 minuto fa - + %1 minutes ago %1 minuti fa - + 1 hour ago 1 ora fa - + %1 hours ago %1 ore fa - + 1 day ago 1 giorno fa - + %1 days ago %1 giorni fa @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? Vuoi rimuoverlo in modo permanente? - + + Cancel Annulla - + + Delete Elimina + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Annulla + + + + Delete + Elimina + DesktopView - Desktop - Desktop + Desktop @@ -96,17 +140,17 @@ Gestore di file - + Do you want to permanently delete all files from the Trash? Vuoi eliminare definitivamente tutti i file dal Cestino? - + Cancel Annulla - + Empty Trash Svuota il Cestino @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Proprietà - + %1 files %1 file @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 elemento - + %1 items %1 elementi - + The file or folder %1 does not exist. Il file o la cartella %1 non esiste. - + Select All Seleziona tutti - File Manager - Gestore di file + Gestore di file - + Open Apri - + Open with Apri con - + Cut Taglia - + Copy Copia - + Paste Incolla - + + New Folder Nuova cartella - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Sposta nel Cestino - + Empty Trash Svuota il Cestino - + Delete Elimina - + Rename Rinomina - + Open in Terminal Apri nel Terminale - + + Set as ... + + + + Set as Wallpaper Imposta come sfondo - + + Set as Login Screen + + + + Properties Proprietà - + Change background Cambia lo sfondo - + Restore Ripristina + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Nome + + + + Type + Tipo + + + + Date + Data + + + + Size + Dimensione + + + + View + + + + Cancel + Annulla + FolderPage - + Empty folder Cartella vuota - + Open Apri - - + + Properties Proprietà - + File File - + New Folder Nuova cartella - + Quit Esci - + Edit Modifica - + Select All Seleziona tutti - + Cut Taglia - + Copy Copia - + Paste Incolla - + Help Aiuto - + About Informazioni - + + File Manager + Gestore di file + + + + A file manager designed for LingmoOS. + + + + %1 item %1 elemento - + %1 items %1 elementi - + %1 selected %1 selezionati - + Empty Trash Svuota il Cestino + + Main + + File Manager + Gestore di file + + + Open + Apri + + OpenWithDialog - + No applications Nessuna applicazione - + Set as default Imposta come predefinito - + Cancel Annulla - + + Show All Apps + + + + + Open Apri - + Open With Apri con @@ -380,51 +613,56 @@ PlacesModel - + Home Pagina principale - + Desktop Desktop - + Documents Documenti - + Downloads Scaricamenti - + Music Musica - + Pictures Immagini - + Videos Video - + Trash Cestino - - + + Drives Unità + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Proprietà - + Type: Tipo: - + Location: Posizione: - + Size: Dimensione: - + Calculating... Calcolo in corso… - + Created: Creato: - + Modified: Modificato: - + Accessed: Accesso: - + Cancel Annulla - + OK OK @@ -482,6 +720,29 @@ %1 file + + SideBar + + + Open + Apri + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/ja_JP.ts b/translations/ja_JP.ts index d06df69..5336f96 100644 --- a/translations/ja_JP.ts +++ b/translations/ja_JP.ts @@ -14,12 +14,12 @@ 新しいフォルダ - + Cancel 取り消し - + OK はい @@ -27,37 +27,37 @@ DateHelper - + Now - + 1 minute ago 1分前 - + %1 minutes ago %1 分前 - + 1 hour ago 1 時間前 - + %1 hours ago %1時間前 - + 1 day ago 1日前 - + %1 days ago %1日前 @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? 永久に削除しますか? - + + Cancel 取り消し - + + Delete 削除 + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + 取り消し + + + + Delete + 削除 + DesktopView - Desktop - デスクトップ + デスクトップ @@ -96,17 +140,17 @@ ファイルマネージャー - + Do you want to permanently delete all files from the Trash? ごみ箱からすべてのファイルを永久に削除しますか? - + Cancel 取り消し - + Empty Trash ゴミ箱を空にする @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties プロパティ - + %1 files % 1ファイル @@ -127,229 +171,404 @@ FolderModel - + %1 item %1 アイテム - + %1 items %1 アイテム - + The file or folder %1 does not exist. ファイルまたはフォルダ%1は存在しません。 - + Select All すべて選択 - File Manager - ファイルマネージャ + ファイルマネージャ - + Open 開く - + Open with で開く - + Cut 切り取り - + Copy コピー - + Paste ペースト - + + New Folder 新しいフォルダ - + + + New Text + + + + + + New Documents + + + + + Compress + 圧縮 + + + + Extract + 解凍 + + + + Extract Here + ここに解凍 + + + + Extract To... + 解凍先を指定... + + + + Select Destination + 保存先を選択 + + + + ZIP Archive + ZIP アーカイブ + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash ゴミ箱へ移動 - + Empty Trash ゴミ箱を空にする - + Delete 削除 - + Rename 名前を変更 - + Open in Terminal ターミナルで開く - + + Set as ... + + + + Set as Wallpaper 壁紙として設定 - + + Set as Login Screen + + + + Properties プロパティ - + Change background 背景を変更 - + Restore 元に戻す - + Show hidden files 隠しファイルを表示 - + Open in new window 新しいウィンドウで開く + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + 名前 + + + + Type + 種類 + + + + Date + 日付 + + + + Size + サイズ + + + + View + 表示 + + + Cancel + 取り消し + FolderPage - + Empty folder 空のフォルダー - + Open 開く - - + + Properties プロパティ - + File ファイル - + New Folder 新しいフォルダ - + Quit 戻す - + Edit 編集 - + Select All すべて選択 - + Cut 切り取り - + Copy コピー - + Paste ペースト - + Help ヘルプ - + About について - + + File Manager + + + + + A file manager designed for LingmoOS. + + + + %1 item %1 アイテム - + %1 items %1 アイテム - + %1 selected %1 が選択ました - + Empty Trash ゴミ箱を空にする + + Main + + Open + 開く + + OpenWithDialog - + No applications アプリケーションなし - + Set as default 既定として設定 - + Cancel 取り消し - + + Show All Apps + + + + + Open 開く - + Open With で開く @@ -390,51 +609,56 @@ PlacesModel - + Home - + Desktop デスクトップ - + Documents 書類 - + Downloads ダウンロード - + Music 音楽 - + Pictures ピクチャー - + Videos ビデオ - + Trash ゴミ箱 - - + + Drives ドライブ + + + Computer + + PropertiesDialog @@ -484,6 +708,29 @@ はい + + SideBar + + + Open + 開く + + + + Open in new window + 新しいウィンドウで開く + + + + Eject + 取り出し + + + + Unmount + マウント解除 + + main diff --git a/translations/ko_KR.ts b/translations/ko_KR.ts new file mode 100644 index 0000000..da7dfac --- /dev/null +++ b/translations/ko_KR.ts @@ -0,0 +1,830 @@ + + + + + + + Extract Here + 여기에 압축 풀기 + + + Extract To... + 압축 풀기 위치... + + + Select Destination + 대상 선택 + + + ZIP Archive + ZIP 압축파일 + + + TAR Archive + TAR 압축파일 + + + 7-Zip Archive + 7-Zip 압축파일 + + + Refresh + 새로 고침 + + + TAR Archive (gzip) + TAR 압축파일 (gzip) + + + TAR Archive (bzip2) + TAR 압축파일 (bzip2) + + + TAR Archive (xz) + TAR 압축파일 (xz) + + + TAR Archive (zstd) + TAR 압축파일 (zstd) + + + TAR Archive (uncompressed) + TAR 압축파일 (압축 안 됨) + + + Icon Size + 아이콘 크기 + + + Huge + 매우 큰 + + + Large + + + + Normal + 보통 + + + Small + 작은 + + + Compress + 압축하기 + + + Extract + 압축 풀기 + + + Show hidden files + 숨김 파일 표시 + + + Open in new window + 새 창에서 열기 + + + View + 보기 + + + Open + 열기 + + + Eject + 꺼내기 + + + Unmount + 마운트 해제 + + + + CreateFolderDialog + + + New folder name + + + + + New folder + + + + + Cancel + + + + + OK + + + + + DateHelper + + + Now + + + + + 1 minute ago + + + + + %1 minutes ago + + + + + 1 hour ago + + + + + %1 hours ago + + + + + 1 day ago + + + + + %1 days ago + + + + + DeleteDialog + + + Do you want to delete it permanently? + + + + + + Cancel + + + + + + Delete + + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + + + + + Delete + + + + + EmptyTrashDialog + + + File Manager + + + + + Do you want to permanently delete all files from the Trash? + + + + + Cancel + + + + + Empty Trash + + + + + FilePropertiesDialog + + + Properties + + + + + %1 files + + + + + FolderModel + + + %1 item + + + + + %1 items + + + + + The file or folder %1 does not exist. + + + + + + New Folder + + + + + + New Text + + + + + Select All + + + + + + New Documents + + + + + + Refresh + 새로 고침 + + + + Extract + 압축 풀기 + + + + Extract Here + 여기에 압축 풀기 + + + + Extract To... + 압축 풀기 위치... + + + + Select Destination + 대상 선택 + + + + Compress + 압축하기 + + + + ZIP Archive + ZIP 압축파일 + + + + 7-Zip Archive + 7-Zip 압축파일 + + + + TAR Archive + TAR 압축파일 + + + + TAR Archive (gzip) + TAR 압축파일 (gzip) + + + + TAR Archive (bzip2) + TAR 압축파일 (bzip2) + + + + TAR Archive (xz) + TAR 압축파일 (xz) + + + + TAR Archive (zstd) + TAR 압축파일 (zstd) + + + + TAR Archive (uncompressed) + TAR 압축파일 (압축 안 됨) + + + + Open + 열기 + + + + Open with + + + + + Cut + + + + + Copy + + + + + Paste + + + + + Move To Trash + + + + + Empty Trash + + + + + Delete + + + + + Rename + + + + + Open in Terminal + + + + + Set as ... + + + + + Set as Wallpaper + + + + + Set as Login Screen + + + + + Properties + + + + + Change background + + + + + Restore + + + + + Show hidden files + 숨김 파일 표시 + + + + Open in new window + 새 창에서 열기 + + + + Icon Size + 아이콘 크기 + + + + Huge + 매우 큰 + + + + Large + + + + + Normal + 보통 + + + + Small + 작은 + + + + Sort by + + + + + Name + + + + + Type + + + + + Date + + + + + Size + + + + + View + 보기 + + + + FolderPage + + + File + + + + + New Folder + + + + + + Properties + + + + + Quit + + + + + Edit + + + + + Select All + + + + + Cut + + + + + Copy + + + + + Paste + + + + + Help + + + + + About + + + + + File Manager + + + + + A file manager designed for LingmoOS. + + + + + Empty folder + + + + + Open + 열기 + + + + %1 item + + + + + %1 items + + + + + %1 selected + + + + + Empty Trash + + + + + Main + + Open + 열기 + + + + OpenWithDialog + + + No applications + + + + + Set as default + + + + + Cancel + + + + + Show All Apps + + + + + + Open + 열기 + + + + Open With + + + + + OptionsMenu + + + Icons + + + + + List + + + + + Name + + + + + Date + + + + + Type + + + + + Size + + + + + PlacesModel + + + Home + + + + + Desktop + + + + + Documents + + + + + Downloads + + + + + Music + + + + + Pictures + + + + + Videos + + + + + Trash + + + + + + Drives + + + + + Computer + + + + + PropertiesDialog + + + Type: + + + + + Location: + + + + + Size: + + + + + Calculating... + + + + + Created: + + + + + Modified: + + + + + Accessed: + + + + + Cancel + + + + + OK + + + + + SideBar + + + Open + 열기 + + + + Open in new window + 새 창에서 열기 + + + + Eject + 꺼내기 + + + + Unmount + 마운트 해제 + + + + main + + + File Manager + + + + diff --git a/translations/lt_LT.ts b/translations/lt_LT.ts index 7d3ee63..2579915 100644 --- a/translations/lt_LT.ts +++ b/translations/lt_LT.ts @@ -14,12 +14,12 @@ Naujas aplankas - + Cancel Atsisakyti - + OK Gerai @@ -27,37 +27,37 @@ DateHelper - + Now Dabar - + 1 minute ago - + %1 minutes ago - + 1 hour ago - + %1 hours ago - + 1 day ago - + %1 days ago @@ -65,26 +65,63 @@ DeleteDialog - + Do you want to delete it permanently? - + + Cancel Atsisakyti - + + Delete + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + - DesktopView + DeleteDialogForever - - Desktop + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Atsisakyti + + + + Delete @@ -96,17 +133,17 @@ - + Do you want to permanently delete all files from the Trash? - + Cancel Atsisakyti - + Empty Trash @@ -114,12 +151,12 @@ FilePropertiesDialog - + Properties - + %1 files @@ -127,191 +164,359 @@ FolderModel - + %1 item - + %1 items - + The file or folder %1 does not exist. - + Select All - - File Manager - - - - + Open - + Open with - + Cut - + Copy - + Paste - + + New Folder - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash - + Empty Trash - + Delete - + Rename - + Open in Terminal - + + Set as ... + + + + Set as Wallpaper - + + Set as Login Screen + + + + Properties - + Change background - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + + + + + Type + + + + + Date + + + + + Size + + + + + View + + + + Cancel + Atsisakyti + FolderPage - + Empty folder - + Open - - + + Properties - + File - + New Folder - + Quit - + Edit - + Select All - + Cut - + Copy - + Paste - + Help - + About - + + File Manager + + + + + A file manager designed for LingmoOS. + + + + %1 item - + %1 items - + %1 selected - + Empty Trash @@ -319,27 +524,33 @@ OpenWithDialog - + No applications - + Set as default - + Cancel Atsisakyti - + + Show All Apps + + + + + Open - + Open With @@ -380,100 +591,128 @@ PlacesModel - + Home - + Desktop - + Documents - + Downloads - + Music - + Pictures - + Videos - + Trash - - + + Drives + + + Computer + + PropertiesDialog - + Type: - + Location: - + Size: - + Calculating... - + Created: - + Modified: - + Accessed: - + Cancel Atsisakyti - + OK Gerai + + SideBar + + + Open + + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/lv_LV.ts b/translations/lv_LV.ts index 0188d9a..9b261ef 100644 --- a/translations/lv_LV.ts +++ b/translations/lv_LV.ts @@ -14,12 +14,12 @@ Jauna mape - + Cancel Atcelt - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Tagad - + 1 minute ago 1 minūti atpakaļ - + %1 minutes ago %1 minūtes atpakaļ - + 1 hour ago 1 stundu atpakaļ - + %1 hours ago %1 stundas atpakaļ - + 1 day ago 1 dienu atpakaļ - + %1 days ago %1 dienas atpakaļ @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? Vai jūs tiešām vēlaties neatgriezeniski to izdzēst? - + + Cancel Atcelt - + + Delete Izdzēst + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Atcelt + + + + Delete + Izdzēst + DesktopView - Desktop - Darbavirsma + Darbavirsma @@ -96,17 +140,17 @@ Failu Pārvaldnieks - + Do you want to permanently delete all files from the Trash? Vai jūs tiešām vēlaties neatgriezeniski izdzēst visus failus no Atkritnes? - + Cancel Atcelt - + Empty Trash Iztukšot Atkritni @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Rekvizīti - + %1 files %1 failu @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 vienums - + %1 items %1 vienumu - + The file or folder %1 does not exist. Fails vai mape %1 neeksistē. - + Select All Izvēlēties Visu - File Manager - Failu Pārvaldnieks + Failu Pārvaldnieks - + Open Atvērt - + Open with Atvērt ar - + Cut Izgriezt - + Copy Kopēt - + Paste Ielīmēt - + + New Folder Jauna Mape - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Pārvietot Atrkritnē - + Empty Trash Iztukšot Atkritni - + Delete Izdzēst - + Rename Pārdēvēt - + Open in Terminal Atvērt Terminālā - + + Set as ... + + + + Set as Wallpaper Uzlikt kā fona bildi - + + Set as Login Screen + + + + Properties Rekvizīti - + Change background Izmainīt fona bildi - + Restore Atjaunot + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Nosaukums + + + + Type + Tips + + + + Date + Datums + + + + Size + Izmērs + + + + View + + + + Cancel + Atcelt + FolderPage - + Empty folder Tukša mape - + Open Atvērt - - + + Properties Rekvizīti - + File Fails - + New Folder Jauna Mape - + Quit Iziet - + Edit Rediģēt - + Select All Atlasīt Visu - + Cut Izgriezt - + Copy Kopēt - + Paste Ielīmēt - + Help Palīdzība - + About Par - + + File Manager + Failu Pārvaldnieks + + + + A file manager designed for LingmoOS. + + + + %1 item %1 vienums - + %1 items %1 vienumu - + %1 selected %1 atlasīts - + Empty Trash Iztukšot Atkritni + + Main + + File Manager + Failu Pārvaldnieks + + + Open + Atvērt + + OpenWithDialog - + No applications Nav programmu - + Set as default Uzstatīt kā noklusējuma - + Cancel Atcelt - + + Show All Apps + + + + + Open Atvērt - + Open With Atvērt ar @@ -380,100 +613,128 @@ PlacesModel - + Home Mājas - + Desktop Darbavirsma - + Documents Dokumenti - + Downloads Lejupielādes - + Music Mūzika - + Pictures Attēli - + Videos Videoklipi - + Trash Atkritne - - + + Drives Diski + + + Computer + + PropertiesDialog - + Type: Tips: - + Location: Atrašanās vieta: - + Size: Izmērs: - + Calculating... Aprēķina... - + Created: Izveidots: - + Modified: Modificēts: - + Accessed: Piekļūts: - + Cancel Atcelt - + OK OK + + SideBar + + + Open + Atvērt + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/ml_IN.ts b/translations/ml_IN.ts index 499f1aa..c887e8e 100644 --- a/translations/ml_IN.ts +++ b/translations/ml_IN.ts @@ -14,12 +14,12 @@ - + Cancel - + OK @@ -27,37 +27,37 @@ DateHelper - + Now - + 1 minute ago - + %1 minutes ago - + 1 hour ago - + %1 hours ago - + 1 day ago - + %1 days ago @@ -65,26 +65,63 @@ DeleteDialog - + Do you want to delete it permanently? - + + Cancel - + + Delete + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + - DesktopView + DeleteDialogForever - - Desktop + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + + + + + Delete @@ -96,17 +133,17 @@ - + Do you want to permanently delete all files from the Trash? - + Cancel - + Empty Trash @@ -114,12 +151,12 @@ FilePropertiesDialog - + Properties - + %1 files @@ -127,191 +164,355 @@ FolderModel - + %1 item - + %1 items - + The file or folder %1 does not exist. - + Select All - - File Manager - - - - + Open - + Open with - + Cut - + Copy - + Paste - + + New Folder - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash - + Empty Trash - + Delete - + Rename - + Open in Terminal - + + Set as ... + + + + Set as Wallpaper - + + Set as Login Screen + + + + Properties - + Change background - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + + + + + Type + + + + + Date + + + + + Size + + + + + View + + FolderPage - + Empty folder - + Open - - + + Properties - + File - + New Folder - + Quit - + Edit - + Select All - + Cut - + Copy - + Paste - + Help - + About - + + File Manager + + + + + A file manager designed for LingmoOS. + + + + %1 item - + %1 items - + %1 selected - + Empty Trash @@ -319,28 +520,34 @@ OpenWithDialog - + + Open With + + + + No applications - + Set as default - + Cancel - - Open + + Show All Apps - - Open With + + + Open @@ -380,100 +587,128 @@ PlacesModel - + Home - + Desktop - + Documents - + Downloads - + Music - + Pictures - + Videos - + Trash - - + + Drives + + + Computer + + PropertiesDialog - + Type: - + Location: - + Size: - + Calculating... - + Created: - + Modified: - + Accessed: - + Cancel - + OK + + SideBar + + + Open + + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/nb_NO.ts b/translations/nb_NO.ts index f954401..e6cdb22 100644 --- a/translations/nb_NO.ts +++ b/translations/nb_NO.ts @@ -14,12 +14,12 @@ Ny mappe - + Cancel Avbryt - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now - + 1 minute ago ett minutt siden - + %1 minutes ago %1 minutter siden - + 1 hour ago én time siden - + %1 hours ago %1 timer siden - + 1 day ago en dag siden - + %1 days ago %1 dager siden @@ -65,17 +65,62 @@ DeleteDialog - + Do you want to delete it permanently? Ønsker du å slette for godt? - + + Cancel Avbryt - + + + Delete + Slett + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Avbryt + + + Delete Slett @@ -83,9 +128,8 @@ DesktopView - Desktop - Skrivebord + Skrivebord @@ -96,17 +140,17 @@ Filbehandler - + Do you want to permanently delete all files from the Trash? Slett alle filer i papirkurven for godt? - + Cancel Avbryt - + Empty Trash Tøm papirkurv @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Egenskaper - + %1 files %1 filer @@ -127,219 +171,404 @@ FolderModel - + %1 item %1 element - + %1 items %1 elementer - + The file or folder %1 does not exist. Filen eller mappen «%1» finnes ikke. - + Select All Velg alle - File Manager - Filbehandler + Filbehandler - + Open Åpne - + Open with Åpne med - + Cut Klipp ut - + Copy Kopier - + Paste Lim inn - + + New Folder Ny mappe - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Flytt til papirkurv - + Empty Trash Tøm papirkurv - + Delete Slett - + Rename Gi nytt navn - + Open in Terminal Åpne i terminal - + + Set as ... + + + + Set as Wallpaper Sett som bakgrunnsbilde - + + Set as Login Screen + + + + Properties Egenskaper - + Change background Endre bakgrunn - + Restore Gjenopprett + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Navn + + + + Type + Type + + + + Date + Dato + + + + Size + Størrelse + + + + View + + + + Cancel + Avbryt + FolderPage - + Empty folder Tom mappe - + Open Åpne - - + + Properties Egenskaper - + File Fil - + New Folder Ny mappe - + Quit Avslutt - + Edit Rediger - + Select All Velg alle - + Cut Klipp ut - + Copy Kopier - + Paste Lim inn - + Help Hjelp - + About Om - + + File Manager + + + + + A file manager designed for LingmoOS. + + + + %1 item %1 element - + %1 items %1 elementer - + %1 selected %1 valgt - + Empty Trash Tøm papirkurv + + Main + + Open + Åpne + + OpenWithDialog - + No applications Ingen programmer - + Set as default Sett som forvalg - + Cancel Avbryt - + + Show All Apps + + + + + Open Åpne - + Open With Åpne med @@ -380,51 +609,56 @@ PlacesModel - + Home Hjem - + Desktop Skrivebord - + Documents Dokumenter - + Downloads Nedlastinger - + Music Musikk - + Pictures Bilder - + Videos Videoer - + Trash Papirkurv - - + + Drives Disker + + + Computer + + PropertiesDialog @@ -433,47 +667,47 @@ Egenskaper - + Type: Type: - + Location: Plassering: - + Size: Størrelse: - + Calculating... Regner ut … - + Created: Opprettet: - + Modified: Endret: - + Accessed: Brukt: - + Cancel Avbryt - + OK OK @@ -482,6 +716,29 @@ %1 filer + + SideBar + + + Open + Åpne + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/ne_NP.ts b/translations/ne_NP.ts index 9e1567a..c78a5f0 100644 --- a/translations/ne_NP.ts +++ b/translations/ne_NP.ts @@ -14,12 +14,12 @@ नयाँ फोल्डर - + Cancel रद्द - + OK हुन्छ @@ -27,37 +27,37 @@ DateHelper - + Now अहिले - + 1 minute ago 1 मिनेटअघि - + %1 minutes ago %1 मिनेटअघि - + 1 hour ago 1 घन्टा अघि - + %1 hours ago %1 घन्टा अघि - + 1 day ago 1 दिन अघि - + %1 days ago %1 दिन अघि @@ -65,17 +65,62 @@ DeleteDialog - + Do you want to delete it permanently? - + + + Cancel + रद्द + + + + + Delete + हटाउने + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + Cancel रद्द - + Delete हटाउने @@ -83,9 +128,8 @@ DesktopView - Desktop - डेस्कटप + डेस्कटप @@ -96,17 +140,17 @@ फाइल सम्पादक - + Do you want to permanently delete all files from the Trash? के सबै हटाउन चाहनुहुन्छ ? - + Cancel रद्द - + Empty Trash रद्दी खाली गर्ने @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties स्वामित्व - + %1 files %1 फाइल हरु @@ -127,219 +171,400 @@ FolderModel - + %1 item %1 वस्तु - + %1 items %1 वस्तुहरु - + The file or folder %1 does not exist. - + Select All सबै चयन - - File Manager - - - - + Open खोल्ने - + Open with - + Cut रित्याएर प्रतिलिपी - + Copy प्रतिलिपि - + Paste टाँस्ने - + + New Folder नयाँ फोल्डर - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash रद्दी टोकरी मा सार्ने - + Empty Trash रद्दी टोकरी खाली गर्ने - + Delete हटाउने - + Rename पुन:नामाकरण - + Open in Terminal टर्मिनल मा खोल्ने - + + Set as ... + + + + Set as Wallpaper वलपेपर लगाउने - + + Set as Login Screen + + + + Properties स्वामित्व - + Change background पृष्ठभुमि बदल्ने - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + नाम + + + + Type + + + + + Date + मिति + + + + Size + आकार + + + + View + + + + Cancel + रद्द + FolderPage - + Empty folder फोल्डर खाली छ - + Open खोल्ने - - + + Properties स्वामित्व - + File - + New Folder नयाँ फोल्डर - + Quit - + Edit - + Select All सबै चयन - + Cut रित्याएर प्रतिलिपी - + Copy प्रतिलिपि - + Paste टाँस्ने - + Help - + About - + + File Manager + + + + + A file manager designed for LingmoOS. + + + + %1 item %1 वस्तु - + %1 items %1 वस्तुहरु - + %1 selected %1 चयन गरियो - + Empty Trash रद्दी टोकरी खाली गर्ने + + Main + + Open + खोल्ने + + OpenWithDialog - + No applications - + Set as default - + Cancel रद्द - + + Show All Apps + + + + + Open खोल्ने - + Open With @@ -380,51 +605,56 @@ PlacesModel - + Home गृह - + Desktop डेस्क्टप - + Documents कागजात - + Downloads डाउनलोड - + Music संगीत - + Pictures तस्विरहरु - + Videos भिडियो हरु - + Trash रद्दी टोकरि - - + + Drives + + + Computer + + PropertiesDialog @@ -433,47 +663,47 @@ स्वामित्व - + Type: प्रकार: - + Location: स्थान: - + Size: आकार: - + Calculating... हिसाब गर्दै...... - + Created: निर्मित: - + Modified: बदलिएको: - + Accessed: पँहुच भएको: - + Cancel रद्द - + OK हुन्छ @@ -482,6 +712,29 @@ %1 फाइल हरु + + SideBar + + + Open + खोल्ने + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/pl_PL.ts b/translations/pl_PL.ts index ed02282..40078bb 100644 --- a/translations/pl_PL.ts +++ b/translations/pl_PL.ts @@ -14,12 +14,12 @@ Nowy folder - + Cancel Anuluj - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Teraz - + 1 minute ago Minutę temu - + %1 minutes ago % minuty temu - + 1 hour ago Godzinę temu - + %1 hours ago % godziny temu - + 1 day ago Dzień temu - + %1 days ago % godziny temu @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? Czy chcesz go trwale usunąć? - + + Cancel Anuluj - + + Delete Usuń + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Anuluj + + + + Delete + Usuń + DesktopView - Desktop - Wyświetlanie + Wyświetlanie @@ -96,17 +140,17 @@ Menedżer plików - + Do you want to permanently delete all files from the Trash? Czy na pewno chcesz permanentnie usunąć wszystkie pliki z kosza? - + Cancel Anuluj - + Empty Trash Opróżnij kosz @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Właściwości - + %1 files %1 plików @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 rzecz - + %1 items %1 rzeczy - + The file or folder %1 does not exist. Plik lub folder %1 nie istnieje. - + Select All Zaznacz wszystko - File Manager - Menedżer plików + Menedżer plików - + Open Otwórz - + Open with Otwórz za pomocą - + Cut Wytnij - + Copy Kopiuj - + Paste Wklej - + + New Folder Nowy folder - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Przenieś do kosza - + Empty Trash Opróżnij kosz - + Delete Usuń - + Rename Zmień nazwę - + Open in Terminal Otwórz w terminalu - + + Set as ... + + + + Set as Wallpaper Ustaw jako tapetę - + + Set as Login Screen + + + + Properties Właściwości - + Change background Zmień tło - + Restore Przywróć + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Nazwa + + + + Type + Typ + + + + Date + Data + + + + Size + Rozmiar + + + + View + + + + Cancel + Anuluj + FolderPage - + Empty folder Pusty folder - + Open Otwórz - - + + Properties Właściwości - + File Plik - + New Folder Nowy folder - + Quit Zakończ - + Edit Edytuj - + Select All Zaznacz wszystko - + Cut Wytnij - + Copy Kopiuj - + Paste Wklej - + Help Pomoc - + About Informacje - + + File Manager + Menedżer plików + + + + A file manager designed for LingmoOS. + + + + %1 item %1 rzecz - + %1 items %1 rzeczy - + %1 selected % zaznaczonych - + Empty Trash Opróżnij kosz + + Main + + File Manager + Menedżer plików + + + Open + Otwórz + + OpenWithDialog - + No applications Brak aplikacji - + Set as default Ustaw jako domyślne - + Cancel Anuluj - + + Show All Apps + + + + + Open Otwórz - + Open With Otwórz za pomocą @@ -380,51 +613,56 @@ PlacesModel - + Home Pulpit - + Desktop Pulpit - + Documents Dokumenty - + Downloads Pobrane - + Music Muzyka - + Pictures Obrazy - + Videos Wideo - + Trash Kosz - - + + Drives Dyski + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Właściwości - + Type: Typ: - + Location: Lokalizacja: - + Size: Rozmiar: - + Calculating... Przetwarzanie... - + Created: Utworzone: - + Modified: Zmodyfikowane: - + Accessed: Odwiedzone: - + Cancel Anuluj - + OK OK @@ -482,6 +720,29 @@ %1 plików + + SideBar + + + Open + Otwórz + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/pt_BR.ts b/translations/pt_BR.ts index d57ba73..3ee660e 100644 --- a/translations/pt_BR.ts +++ b/translations/pt_BR.ts @@ -14,12 +14,12 @@ Nova pasta - + Cancel Cancelar - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Agora - + 1 minute ago 1 minuto atrás - + %1 minutes ago %1 minutos atrás - + 1 hour ago 1 hora atrás - + %1 hours ago %1 horas atrás - + 1 day ago 1 dia atrás - + %1 days ago %1 dias atrás @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? Você deseja excluí-lo permanentemente? - + + Cancel Cancelar - + + Delete Excluir + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Cancelar + + + + Delete + Excluir + DesktopView - Desktop - Área de trabalho + Área de trabalho @@ -96,17 +140,17 @@ Gerenciador de arquivos - + Do you want to permanently delete all files from the Trash? Você deseja excluir permanentemente todos os arquivos da Lixeira? - + Cancel Cancelar - + Empty Trash Esvaziar Lixeira @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Propriedades - + %1 files 1% de arquivos @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 item - + %1 items %1 itens - + The file or folder %1 does not exist. O arquivo ou pasta não existe. - + Select All Selecionar tudo - File Manager - Gerenciador de arquivos + Gerenciador de arquivos - + Open Abrir - + Open with Abrir com - + Cut Recortar - + Copy Copiar - + Paste Colar - + + New Folder Nova pasta - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Mover para a Lixeira - + Empty Trash Esvaziar Lixeira - + Delete Excluir - + Rename Renomear - + Open in Terminal Abrir no Terminal - + + Set as ... + + + + Set as Wallpaper Definir como papel de parede - + + Set as Login Screen + + + + Properties Propriedades - + Change background Mudar plano de fundo - + Restore Restaurar + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Nome + + + + Type + Tipo + + + + Date + Data + + + + Size + Tamanho + + + + View + + + + Cancel + Cancelar + FolderPage - + Empty folder Esvaziar pasta - + Open Abrir - - + + Properties Propriedades - + File Arquivos - + New Folder Nova pasta - + Quit Sair - + Edit Editar - + Select All Selecionar tudo - + Cut Recortar - + Copy Copiar - + Paste Colar - + Help Ajuda - + About Sobre - + + File Manager + Gerenciador de arquivos + + + + A file manager designed for LingmoOS. + + + + %1 item %1 item - + %1 items %1 itens - + %1 selected %1 selecionado(s) - + Empty Trash Esvaziar Lixeira + + Main + + File Manager + Gerenciador de arquivos + + + Open + Abrir + + OpenWithDialog - + No applications Sem aplicativos - + Set as default Definir como padrão - + Cancel Cancelar - + + Show All Apps + + + + + Open Abrir - + Open With Abrir com @@ -380,51 +613,56 @@ PlacesModel - + Home Início - + Desktop Área de Trabalho - + Documents Documentos - + Downloads Downloads - + Music Música - + Pictures Imagens - + Videos Vídeos - + Trash Lixeira - - + + Drives Drives + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Propriedades - + Type: Tipo: - + Location: Localização: - + Size: Tamanho: - + Calculating... Calculando... - + Created: Criado: - + Modified: Modificado: - + Accessed: Acessado: - + Cancel Cancelar - + OK OK @@ -482,6 +720,29 @@ %1 arquivos + + SideBar + + + Open + Abrir + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/pt_PT.ts b/translations/pt_PT.ts index 5163787..11a93a5 100644 --- a/translations/pt_PT.ts +++ b/translations/pt_PT.ts @@ -14,12 +14,12 @@ Nova pasta - + Cancel Cancelar - + OK Aceitar @@ -27,37 +27,37 @@ DateHelper - + Now Agora - + 1 minute ago Há 1 minuto - + %1 minutes ago Há %1 minutos - + 1 hour ago Há 1 hora - + %1 hours ago Há %1 horas - + 1 day ago Há 1 dia - + %1 days ago Há %1 dias @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? Deseja eliminá-lo permanentemente? - + + Cancel Cancelar - + + Delete Eliminar + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Cancelar + + + + Delete + Eliminar + DesktopView - Desktop - Ambiente de trabalho + Ambiente de trabalho @@ -96,17 +140,17 @@ Gestor de Ficheiros - + Do you want to permanently delete all files from the Trash? Deseja eliminar permanentemente todos os ficheiros do Lixo? - + Cancel Cancelar - + Empty Trash Esvaziar Lixo @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Propriedades - + %1 files %1 ficheiros @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 item - + %1 items %1 itens - + The file or folder %1 does not exist. O ficheiro ou pasta %1 não existe. - + Select All Selecionar tudo - File Manager - Gestor de Ficheiros + Gestor de Ficheiros - + Open Abrir - + Open with Abrir com - + Cut Cortar - + Copy Copiar - + Paste Colar - + + New Folder Nova Pasta - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Mover para o Lixo - + Empty Trash Esvaziar Lixo - + Delete Eliminar - + Rename Renomear - + Open in Terminal Abrir no Terminal - + + Set as ... + + + + Set as Wallpaper Definir como Papel de parede - + + Set as Login Screen + + + + Properties Propriedades - + Change background Mudar de fundo - + Restore Restaurar + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Nome + + + + Type + Tipo + + + + Date + Data + + + + Size + Tamanho + + + + View + + + + Cancel + Cancelar + FolderPage - + Empty folder Pasta vazia - + Open Abrir - - + + Properties Propriedades - + File Ficheiro - + New Folder Nova Pasta - + Quit Sair - + Edit Editar - + Select All Selecionar tudo - + Cut Cortar - + Copy Copiar - + Paste Colar - + Help Ajuda - + About Sobre - + + File Manager + Gestor de Ficheiros + + + + A file manager designed for LingmoOS. + + + + %1 item %1 item - + %1 items %1 itens - + %1 selected %1 selecionados - + Empty Trash Esvaziar Lixo + + Main + + File Manager + Gestor de Ficheiros + + + Open + Abrir + + OpenWithDialog - + No applications Nenhuma aplicação - + Set as default Definir como padrão - + Cancel Cancelar - + + Show All Apps + + + + + Open Abrir - + Open With Abrir com @@ -380,51 +613,56 @@ PlacesModel - + Home Início - + Desktop Ambiente de trabalho - + Documents Documentos - + Downloads Transferências - + Music Música - + Pictures Imagens - + Videos Vídeos - + Trash Lixo - - + + Drives Unidades + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Propriedades - + Type: Tipo: - + Location: Localização: - + Size: Tamanho: - + Calculating... A calcular... - + Created: Criado: - + Modified: Modificado: - + Accessed: Acedido: - + Cancel Cancelar - + OK Aceitar @@ -482,6 +720,29 @@ %1 ficheiros + + SideBar + + + Open + Abrir + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/ro_RO.ts b/translations/ro_RO.ts index 033fe1e..020f29c 100644 --- a/translations/ro_RO.ts +++ b/translations/ro_RO.ts @@ -14,12 +14,12 @@ Dosar nou - + Cancel Anulare - + OK Ok @@ -27,37 +27,37 @@ DateHelper - + Now Acum - + 1 minute ago 1 minut în urmă - + %1 minutes ago %1 minute în urmă - + 1 hour ago - + %1 hours ago - + 1 day ago - + %1 days ago @@ -65,26 +65,63 @@ DeleteDialog - + Do you want to delete it permanently? - + + Cancel Anulare - + + Delete + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + - DesktopView + DeleteDialogForever - - Desktop + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Anulare + + + + Delete @@ -96,17 +133,17 @@ - + Do you want to permanently delete all files from the Trash? - + Cancel Anulare - + Empty Trash @@ -114,12 +151,12 @@ FilePropertiesDialog - + Properties - + %1 files @@ -127,191 +164,359 @@ FolderModel - + %1 item - + %1 items - + The file or folder %1 does not exist. - + Select All - - File Manager - - - - + Open - + Open with - + Cut - + Copy - + Paste - + + New Folder - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash - + Empty Trash - + Delete - + Rename - + Open in Terminal - + + Set as ... + + + + Set as Wallpaper - + + Set as Login Screen + + + + Properties - + Change background - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + + + + + Type + + + + + Date + + + + + Size + + + + + View + + + + Cancel + Anulare + FolderPage - + Empty folder - + Open - - + + Properties - + File - + New Folder - + Quit - + Edit - + Select All - + Cut - + Copy - + Paste - + Help - + About - + + File Manager + + + + + A file manager designed for LingmoOS. + + + + %1 item - + %1 items - + %1 selected - + Empty Trash @@ -319,27 +524,33 @@ OpenWithDialog - + No applications - + Set as default - + Cancel Anulare - + + Show All Apps + + + + + Open - + Open With @@ -380,100 +591,128 @@ PlacesModel - + Home - + Desktop - + Documents - + Downloads - + Music - + Pictures - + Videos - + Trash - - + + Drives + + + Computer + + PropertiesDialog - + Type: - + Location: - + Size: - + Calculating... - + Created: - + Modified: - + Accessed: - + Cancel Anulare - + OK Ok + + SideBar + + + Open + + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/ru_RU.ts b/translations/ru_RU.ts index 1178d2e..1131e5c 100644 --- a/translations/ru_RU.ts +++ b/translations/ru_RU.ts @@ -14,12 +14,12 @@ Новая папка - + Cancel Отмена - + OK ОК @@ -27,37 +27,37 @@ DateHelper - + Now Сейчас - + 1 minute ago 1 минуту назад - + %1 minutes ago %1 минут назад - + 1 hour ago 1 час назад - + %1 hours ago %1 часов назад - + 1 day ago 1 день назад - + %1 days ago %1 дней назад @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? Вы хотите удалить его навсегда? - + + Cancel Отмена - + + Delete Удалить + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Отмена + + + + Delete + Удалить + DesktopView - Desktop - Рабочий стол + Рабочий стол @@ -96,17 +140,17 @@ Файловый менеджер - + Do you want to permanently delete all files from the Trash? Вы хотите навсегда удалить все файлы из корзины? - + Cancel Отмена - + Empty Trash Очистить корзину @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Свойства - + %1 files %1 файлов @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 объект - + %1 items %1 объектов - + The file or folder %1 does not exist. Файл или папка %1 не существует. - + Select All Выделить всё - File Manager - Файловый менеджер + Файловый менеджер - + Open Открыть - + Open with Открыть как - + Cut Вырезать - + Copy Копировать - + Paste Вставить - + + New Folder Новая папка - + + + New Text + Новый текст + + + + + New Documents + Новые документы + + + + Compress + Сжать + + + + Extract + Распаковать + + + + Extract Here + Распаковать здесь + + + + Extract To... + Распаковать в... + + + + Select Destination + Выберите место назначения + + + + ZIP Archive + ZIP архив + + + + TAR Archive + TAR архив + + + + 7-Zip Archive + 7-Zip архив + + + + + Refresh + Обновить + + + + TAR Archive (gzip) + TAR архив (gzip) + + + + TAR Archive (bzip2) + TAR архив (bzip2) + + + + TAR Archive (xz) + TAR архив (xz) + + + + TAR Archive (zstd) + TAR архив (zstd) + + + + TAR Archive (uncompressed) + TAR архив (без сжатия) + + + Move To Trash Переместить в корзину - + Empty Trash Очистить корзину - + Delete Удалить - + Rename Переименовать - + Open in Terminal Открыть в терминале - + + Set as ... + + + + Set as Wallpaper Установить как обои - + + Set as Login Screen + + + + Properties Свойства - + Change background Изменить фон - + Restore Восстановить + + + Show hidden files + Показать скрытые файлы + + + + Open in new window + Открыть в новом окне + + + + Icon Size + Размер значков + + + + Huge + Огромный + + + + Large + Большой + + + + Normal + Обычный + + + + Small + Маленький + + + + Sort by + + + + + Name + Имя + + + + Type + Тип + + + + Date + Дата + + + + Size + Размер + + + + View + Вид + + + Cancel + Отмена + FolderPage - + Empty folder Пустая папка - + Open Открыть - - + + Properties Свойства - + File Файл - + New Folder Новая папка - + Quit Выйти - + Edit Изменить - + Select All Выделить всё - + Cut Вырезать - + Copy Копировать - + Paste Вставить - + Help Помощь - + About О программе - + + File Manager + Файловый менеджер + + + + A file manager designed for LingmoOS. + + + + %1 item %1 объект - + %1 items %1 объектов - + %1 selected %1 выделено - + Empty Trash Очистить корзину + + Main + + File Manager + Файловый менеджер + + + Open + Открыть + + OpenWithDialog - + No applications Нет приложений - + Set as default Сделать по умолчанию - + Cancel Отмена - + + Show All Apps + + + + + Open Открыть - + Open With Открыть как @@ -380,51 +613,56 @@ PlacesModel - + Home Домашний каталог - + Desktop Рабочий стол - + Documents Документы - + Downloads Загрузки - + Music Музыка - + Pictures Изображения - + Videos Видео - + Trash Корзина - - + + Drives Диски + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Свойства - + Type: Тип: - + Location: Размещение: - + Size: Размер: - + Calculating... Вычисление... - + Created: Создано: - + Modified: Изменено: - + Accessed: Доступ: - + Cancel Отмена - + OK ОК @@ -482,6 +720,29 @@ %1 файлов + + SideBar + + + Open + Открыть + + + + Open in new window + Открыть в новом окне + + + + Eject + + + + + Unmount + + + main diff --git a/translations/si_LK.ts b/translations/si_LK.ts index b0f03ba..6e2a8d5 100644 --- a/translations/si_LK.ts +++ b/translations/si_LK.ts @@ -14,12 +14,12 @@ නව බහාලුම - + Cancel අවලංගු කරන්න - + OK හරි @@ -27,37 +27,37 @@ DateHelper - + Now දැන් - + 1 minute ago විනාඩි 1 කට පෙරාතුව - + %1 minutes ago විනාඩි %1 කට පෙරාතුව - + 1 hour ago පැය 1 කට පෙරාතුව - + %1 hours ago පැය %1 කට පෙරාතුව - + 1 day ago දින 1 කට පෙරාතුව - + %1 days ago දින %1 කට පෙරාතුව @@ -65,26 +65,63 @@ DeleteDialog - + Do you want to delete it permanently? - + + Cancel අවලංගු කරන්න - + + Delete + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + - DesktopView + DeleteDialogForever - - Desktop + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + අවලංගු කරන්න + + + + Delete @@ -96,17 +133,17 @@ ගොනු කළමනාකරු - + Do you want to permanently delete all files from the Trash? - + Cancel අවලංගු කරන්න - + Empty Trash @@ -114,12 +151,12 @@ FilePropertiesDialog - + Properties - + %1 files ගොනු %1 @@ -127,219 +164,408 @@ FolderModel - + %1 item - + %1 items - + The file or folder %1 does not exist. - + Select All සියල්ල තෝරන්න - File Manager - ගොනු කළමනාකරු + ගොනු කළමනාකරු - + Open විවෘත කරන්න - + Open with - + Cut කපන්න - + Copy පිටපත් කරන්න - + Paste අලවන්න - + + New Folder නව බහාලුම - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash - + Empty Trash - + Delete - + Rename නැවත නම් කරන්න - + Open in Terminal අග්‍රයෙහි විවෘත කරන්න - + + Set as ... + + + + Set as Wallpaper - + + Set as Login Screen + + + + Properties - + Change background පසුබිම වෙනස් කරන්න - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + නම + + + + Type + + + + + Date + දිනය + + + + Size + ප්‍රමාණය + + + + View + + + + Cancel + අවලංගු කරන්න + FolderPage - + Empty folder - + Open විවෘත කරන්න - - + + Properties - + File - + New Folder නව බහාලුම - + Quit - + Edit - + Select All සියල්ල තෝරන්න - + Cut කපන්න - + Copy පිටපත් කරන්න - + Paste අලවන්න - + Help - + About - + + File Manager + ගොනු කළමනාකරු + + + + A file manager designed for LingmoOS. + + + + %1 item - + %1 items - + %1 selected - + Empty Trash + + Main + + File Manager + ගොනු කළමනාකරු + + + Open + විවෘත කරන්න + + OpenWithDialog - + No applications - + Set as default - + Cancel අවලංගු කරන්න - + + Show All Apps + + + + + Open විවෘත කරන්න - + Open With @@ -380,96 +606,101 @@ PlacesModel - + Home මුල - + Desktop - + Documents ලේඛන - + Downloads බාගැනීම් - + Music සංගීත - + Pictures පින්තූර - + Videos දෘශ්‍යක - + Trash - - + + Drives + + + Computer + + PropertiesDialog - + Type: වර්ගය: - + Location: ස්ථානය: - + Size: ප්‍රමාණය: - + Calculating... ගණනය වෙමින්... - + Created: - + Modified: - + Accessed: - + Cancel අවලංගු කරන්න - + OK හරි @@ -478,6 +709,29 @@ ගොනු %1 + + SideBar + + + Open + විවෘත කරන්න + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/sk_SK.ts b/translations/sk_SK.ts index 03dcf20..956a065 100644 --- a/translations/sk_SK.ts +++ b/translations/sk_SK.ts @@ -14,12 +14,12 @@ Nový priečinok - + Cancel Zrušiť - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Teraz - + 1 minute ago Pred minútou - + %1 minutes ago Pred %1 minútami - + 1 hour ago Pred hodinou - + %1 hours ago Pred %1 hodinami - + 1 day ago Pred 1 dňom - + %1 days ago Pred %1 dňami @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? Chcete to nenávratne vymazať? - + + Cancel Zrušiť - + + Delete Vymazať + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Zrušiť + + + + Delete + + DesktopView - Desktop - Pracovná plocha + Pracovná plocha @@ -96,17 +140,17 @@ Správca súborov - + Do you want to permanently delete all files from the Trash? Chcete nenávratne vymazať všetky súbory v Koši? - + Cancel Zrušiť - + Empty Trash Vyprázdniť kôš @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Vlastnosti - + %1 files %1 súborov @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 položka - + %1 items %1 položiek - + The file or folder %1 does not exist. Súbor alebo priečinok %1 neexistuje. - + Select All Vybrať všetky - File Manager - Správca súborov + Správca súborov - + Open Otvoriť - + Open with Otvoriť v - + Cut Vystrihnúť - + Copy Kopírovať - + Paste Prilepiť - + + New Folder Nový priečinok - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Presunúť do Koša - + Empty Trash Vyprázdniť Kôš - + Delete Odstrániť - + Rename Premenovať - + Open in Terminal Otvoriť v Termináli - + + Set as ... + + + + Set as Wallpaper Nastaviť ako Pozadie pracovnej plochy - + + Set as Login Screen + + + + Properties Vlastnosti - + Change background Zmeniť pozadie - + Restore Obnoviť + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Názov + + + + Type + Typ + + + + Date + Dátum + + + + Size + Veľkosť + + + + View + + + + Cancel + Zrušiť + FolderPage - + Empty folder Vyprázdniť priečinok - + Open Otvoriť - - + + Properties Vlastnosti - + File Súbor - + New Folder Nový priečinok - + Quit Skončiť - + Edit Upraviť - + Select All Vybrať všetko - + Cut Vystrihnúť - + Copy Kopírovať - + Paste Prilepiť - + Help Pomocník - + About O aplikácii - + + File Manager + Správca súborov + + + + A file manager designed for LingmoOS. + + + + %1 item %1 položka - + %1 items %1 položiek - + %1 selected %1 vybrané - + Empty Trash Vyprázdniť kôš + + Main + + File Manager + Správca súborov + + + Open + Otvoriť + + OpenWithDialog - + No applications Žiadne aplikácie - + Set as default Nastaviť ako predvolené - + Cancel Zrušiť - + + Show All Apps + + + + + Open Otvoriť - + Open With Otvoriť v @@ -380,51 +613,56 @@ PlacesModel - + Home Domov - + Desktop Pracovná plocha - + Documents Dokumenty - + Downloads Prevzaté súbory - + Music Hudba - + Pictures Obrázky - + Videos Videá - + Trash Kôš - - + + Drives Disky + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Vlastnosti - + Type: Typ súboru: - + Location: Umiestnenie: - + Size: Veľkosť: - + Calculating... Počítanie... - + Created: Vytvorený: - + Modified: Upravený: - + Accessed: Otvorený: - + Cancel Zrušiť - + OK OK @@ -482,6 +720,29 @@ %1 súbory + + SideBar + + + Open + Otvoriť + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/so.ts b/translations/so.ts index 4643c11..eff8f30 100644 --- a/translations/so.ts +++ b/translations/so.ts @@ -14,12 +14,12 @@ Gal cusub - + Cancel Xir - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Hadda - + 1 minute ago 1 daqiiqo kahor - + %1 minutes ago %1 daqiiqo kahor - + 1 hour ago 1 saac kahor - + %1 hours ago %1 saacadood kahor - + 1 day ago 1 maalin kahor - + %1 days ago %1 maalmood kahor @@ -65,17 +65,62 @@ DeleteDialog - + Do you want to delete it permanently? - + + + Cancel + Xir + + + + + Delete + Tirtir + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + Cancel Xir - + Delete Tirtir @@ -83,9 +128,8 @@ DesktopView - Desktop - Kadinka + Kadinka @@ -96,17 +140,17 @@ Fayl Maamule - + Do you want to permanently delete all files from the Trash? Ma hubtaa inaad si kama dambaysa u tirtirto dhammaan faylasha ku jira qashinka? - + Cancel Xir - + Empty Trash Qashinka Madhi @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties - + %1 files %1 fayl @@ -127,219 +171,400 @@ FolderModel - + %1 item %1 walax - + %1 items %1 walxood - + The file or folder %1 does not exist. - + Select All Dooro dhammaan - - File Manager - - - - + Open Fur - + Open with - + Cut Jar - + Copy Koobbi - + Paste Dhaji - + + New Folder Gal Cusub - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Qashinka ku dar - + Empty Trash Qashinka madhi - + Delete Tirtir - + Rename Magacow - + Open in Terminal Kufur Terminal-ka - + + Set as ... + + + + Set as Wallpaper Ku dhaji gidaarka - + + Set as Login Screen + + + + Properties Astaamaha - + Change background Bedel sawirka gidaarka - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Magac + + + + Type + + + + + Date + Taariikh + + + + Size + Xajmiga + + + + View + + + + Cancel + Xir + FolderPage - + Empty folder Galka madhi - + Open Fur - - + + Properties Astaamaha - + File - + New Folder Gal Cusub - + Quit - + Edit - + Select All Dooro dhammaan - + Cut Jar - + Copy Koobbi - + Paste Dhaji - + Help - + About - + + File Manager + + + + + A file manager designed for LingmoOS. + + + + %1 item %1 walax - + %1 items %1 walxood - + %1 selected %1 dooratay - + Empty Trash Qashinka Madhi + + Main + + Open + Fur + + OpenWithDialog - + No applications - + Set as default - + Cancel Xir - + + Show All Apps + + + + + Open Fur - + Open With @@ -380,51 +605,56 @@ PlacesModel - + Home Aqal - + Desktop Kadinka - + Documents Dukumiintiyada - + Downloads Dejisan - + Music Muusig - + Pictures Sawirro - + Videos Muuqaallo - + Trash Qashin - - + + Drives + + + Computer + + PropertiesDialog @@ -433,47 +663,47 @@ Astaamo - + Type: Nooca: - + Location: Goobta: - + Size: Xajmiga: - + Calculating... Xisaabinayaa... - + Created: La abuuray: - + Modified: La bedelay: - + Accessed: La furay: - + Cancel Xir - + OK OK @@ -482,6 +712,29 @@ %1 fayl + + SideBar + + + Open + Fur + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/sr_RS.ts b/translations/sr_RS.ts index 1a29ec3..f556b87 100644 --- a/translations/sr_RS.ts +++ b/translations/sr_RS.ts @@ -14,12 +14,12 @@ Nova fascikla - + Cancel Otkaži - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Sad - + 1 minute ago Pre 1 minut - + %1 minutes ago Pre %1 minuta - + 1 hour ago Pre 1 sat - + %1 hours ago Pre %1 sati - + 1 day ago Pre 1 dan - + %1 days ago Pre %1 dana @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? Da li želite trajno ovo da obrišete? - + + Cancel Otkaži - + + Delete Obriši + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Otkaži + + + + Delete + Obriši + DesktopView - Desktop - Radna površina + Radna površina @@ -96,17 +140,17 @@ Upravljač datoteka - + Do you want to permanently delete all files from the Trash? Želite li trajno obrisati sve fajlove iz Smeća? - + Cancel Otkaži - + Empty Trash Isprazni smeće @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Svojstva - + %1 files %1 datoteka @@ -127,224 +171,404 @@ FolderModel - + %1 item %1 stavka - + %1 items %1 stavki - + The file or folder %1 does not exist. Datoteka ili fascikla %1 ne postoji. - + Select All Izaberi sve - File Manager - Upravljač datotekama + Upravljač datotekama - + Open Otvori - + Open with Otvori pomoću - + Cut Iseci - + Copy Kopiraj - + Paste Zalepi - + + New Folder Nova fascikla - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Premesti u smeće - + Empty Trash Isprazni smeće - + Delete Obriši - + Rename Preimenuj - + Open in Terminal Otvori u terminalu - + + Set as ... + + + + Set as Wallpaper Postavi kao pozadinu - + + Set as Login Screen + + + + Properties Svojstva - + Change background Promeni pozadinu - + Restore Obnovi - + Show hidden files Prikaži skrivene datoteke + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Ime + + + + Type + Tip + + + + Date + Datum + + + + Size + Veličina + + + + View + + + + Cancel + Otkaži + FolderPage - + Empty folder Prazna fascikla - + Open Otvori - - + + Properties Svojstva - + File Datoteka - + New Folder Nova fascikla - + Quit Odustani - + Edit Uredi - + Select All Izaberi sve - + Cut Iseci - + Copy Kopiraj - + Paste Zalepi - + Help Pomoć - + About O Aplikaciji - + + File Manager + + + + + A file manager designed for LingmoOS. + + + + %1 item %1 stavka - + %1 items %1 stavki - + %1 selected %1 odabrano - + Empty Trash Isprazni smeće + + Main + + Open + Otvori + + OpenWithDialog - + No applications - + Set as default Postavi kao podrazumevano - + Cancel Otkaži - + + Show All Apps + + + + + Open Otvori - + Open With Otvori pomoću @@ -385,100 +609,128 @@ PlacesModel - + Home - + Desktop Radna površina - + Documents Dokumenti - + Downloads Preuzimanja - + Music Muzika - + Pictures Slike - + Videos Videozapisi - + Trash Smeće - - + + Drives Diskovi + + + Computer + + PropertiesDialog - + Type: Vrsta: - + Location: Lokacija: - + Size: Veličina: - + Calculating... Računanje... - + Created: Napravljeno: - + Modified: Izmenjeno: - + Accessed: Pristupljeno: - + Cancel Otkaži - + OK U redu + + SideBar + + + Open + Otvori + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/sv_SE.ts b/translations/sv_SE.ts index 7d29fbd..375868d 100644 --- a/translations/sv_SE.ts +++ b/translations/sv_SE.ts @@ -14,12 +14,12 @@ Ny mapp - + Cancel Avbryt - + OK OK @@ -27,37 +27,37 @@ DateHelper - + Now Nu - + 1 minute ago 1 minut sedan - + %1 minutes ago %1 minuter sedan - + 1 hour ago 1 timme sedan - + %1 hours ago %1 timmar sedan - + 1 day ago 1 dag sedan - + %1 days ago %1 dagar sedan @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? Vill du ta bort den permanent? - + + Cancel Avbryt - + + Delete Ta bort + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Avbryt + + + + Delete + Ta bort + DesktopView - Desktop - Skrivbord + Skrivbord @@ -96,17 +140,17 @@ Filhanterare - + Do you want to permanently delete all files from the Trash? Vill du radera alla filer permanent från papperskorgen? - + Cancel Avbryt - + Empty Trash Töm papperskorgen @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Egenskaper - + %1 files %1 filer @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 objekt - + %1 items %1 objekt - + The file or folder %1 does not exist. Denna fil eller katalog %1 existerar inte. - + Select All Välj alla - File Manager - Filhanterare + Filhanterare - + Open Öppna - + Open with Öppna med - + Cut Klipp ut - + Copy Kopiera - + Paste Klistra in - + + New Folder Ny mapp - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Flytta till papperskorgen - + Empty Trash Tom papperskorgen - + Delete Ta bort - + Rename Döp om - + Open in Terminal Öppna i Terminal - + + Set as ... + + + + Set as Wallpaper Använd som bakgrund - + + Set as Login Screen + + + + Properties Egenskaper - + Change background Ändra bakgrund - + Restore Återställ + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Namn + + + + Type + Typ + + + + Date + Datum + + + + Size + Storlek + + + + View + + + + Cancel + Avbryt + FolderPage - + Empty folder Tom mapp - + Open Öppna - - + + Properties Egenskaper - + File Fil - + New Folder Ny Mapp - + Quit Avsluta - + Edit Redigera - + Select All Välj alla - + Cut Klipp ut - + Copy Kopiera - + Paste Klistra in - + Help Hjälp - + About Om - + + File Manager + Filhanterare + + + + A file manager designed for LingmoOS. + + + + %1 item %1 objekt - + %1 items %1 objekt - + %1 selected %1 valda - + Empty Trash Töm papperskorgen + + Main + + File Manager + Filhanterare + + + Open + Öppna + + OpenWithDialog - + No applications Inga program - + Set as default Ange som standard - + Cancel Avbryt - + + Show All Apps + + + + + Open Öppna - + Open With Öppna med @@ -380,51 +613,56 @@ PlacesModel - + Home Hem - + Desktop Skrivbord - + Documents Dokument - + Downloads Hämtade filer - + Music Musik - + Pictures Bilder - + Videos Filmer - + Trash Skräp - - + + Drives Enheter + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Egenskaper - + Type: Typ: - + Location: Plats: - + Size: Storlek: - + Calculating... Beräknar... - + Created: Skapad: - + Modified: Ändrad: - + Accessed: Senast öppnad: - + Cancel Avbryt - + OK OK @@ -482,6 +720,29 @@ %1 fil + + SideBar + + + Open + Öppna + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/sw.ts b/translations/sw.ts index 32ab5ca..42ceb57 100644 --- a/translations/sw.ts +++ b/translations/sw.ts @@ -14,12 +14,12 @@ Folda mpya - + Cancel Ghairi - + OK Sawa @@ -27,37 +27,37 @@ DateHelper - + Now Sasa - + 1 minute ago dakika 1 imepita - + %1 minutes ago %1 dakika zimepita - + 1 hour ago saa 1 imepita - + %1 hours ago masaa %1 zimepita - + 1 day ago Siku 1 imepita - + %1 days ago Siku %1 zimepita @@ -65,17 +65,62 @@ DeleteDialog - + Do you want to delete it permanently? - + + + Cancel + Ghairi + + + + + Delete + Futa + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + Cancel Ghairi - + Delete Futa @@ -83,9 +128,8 @@ DesktopView - Desktop - Desktop + Desktop @@ -96,17 +140,17 @@ meneja la faili - + Do you want to permanently delete all files from the Trash? Unataka kufuta kila kitu kwa Takataka? - + Cancel Ghairi - + Empty Trash Futa Takataka @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Mali - + %1 files %1 faili @@ -127,219 +171,400 @@ FolderModel - + %1 item %1 kitu - + %1 items %1 vitu - + The file or folder %1 does not exist. - + Select All Chagua Zote - - File Manager - - - - + Open Fungua - + Open with Fungua na - + Cut Kata - + Copy Nakala - + Paste Bandika - + + New Folder Folda mpya - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Weka ndani ya Takataka - + Empty Trash Futa Takataka - + Delete Futa - + Rename Badilisha jina - + Open in Terminal Fungua ndani ya Terminal - + + Set as ... + + + + Set as Wallpaper Weka kama kikaratasi - + + Set as Login Screen + + + + Properties Mali - + Change background Badilisha kikaratasi - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Jina + + + + Type + + + + + Date + Tarehe + + + + Size + Ukubwa + + + + View + + + + Cancel + Ghairi + FolderPage - + Empty folder Folda tupu - + Open Fungua - - + + Properties Mali - + File Faili - + New Folder Folda mpya - + Quit Toka - + Edit Badilisha - + Select All Chagua zote - + Cut Kata - + Copy Nakala - + Paste Bandika - + Help Usaidizi - + About Kuhusu - + + File Manager + + + + + A file manager designed for LingmoOS. + + + + %1 item %1 kitu - + %1 items %1 vitu - + %1 selected %1 imechaguliwa - + Empty Trash Futa Takataka + + Main + + Open + Fungua + + OpenWithDialog - + No applications Hakuna programu - + Set as default Weka kama kawaida - + Cancel Ghairi - + + Show All Apps + + + + + Open Fungua - + Open With Fungua na @@ -380,100 +605,128 @@ PlacesModel - + Home Nyumbani - + Desktop Desktop - + Documents Hati - + Downloads Mapakuo - + Music Muziki - + Pictures Mapicha - + Videos Mavideo - + Trash Takataka - - + + Drives + + + Computer + + PropertiesDialog - + Type: Aina: - + Location: Mahali: - + Size: Ukubwa: - + Calculating... inapiga hesabu... - + Created: Imetengezwa: - + Modified: Imebadilishwa: - + Accessed: Imefunguliwa: - + Cancel Ghairi - + OK Sawa + + SideBar + + + Open + Fungua + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/ta_IN.ts b/translations/ta_IN.ts index b20a25b..ddedbbe 100644 --- a/translations/ta_IN.ts +++ b/translations/ta_IN.ts @@ -14,12 +14,12 @@ - + Cancel - + OK @@ -27,37 +27,37 @@ DateHelper - + Now - + 1 minute ago - + %1 minutes ago - + 1 hour ago - + %1 hours ago - + 1 day ago - + %1 days ago @@ -65,26 +65,63 @@ DeleteDialog - + Do you want to delete it permanently? - + + Cancel - + + Delete + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + - DesktopView + DeleteDialogForever - - Desktop + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + + + + + Delete @@ -96,17 +133,17 @@ - + Do you want to permanently delete all files from the Trash? - + Cancel - + Empty Trash @@ -114,12 +151,12 @@ FilePropertiesDialog - + Properties - + %1 files @@ -127,191 +164,355 @@ FolderModel - + %1 item - + %1 items - + The file or folder %1 does not exist. - + Select All - - File Manager - - - - + Open - + Open with - + Cut - + Copy - + Paste - + + New Folder - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash - + Empty Trash - + Delete - + Rename - + Open in Terminal - + + Set as ... + + + + Set as Wallpaper - + + Set as Login Screen + + + + Properties - + Change background - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + + + + + Type + + + + + Date + + + + + Size + + + + + View + + FolderPage - + Empty folder - + Open - - + + Properties - + File - + New Folder - + Quit - + Edit - + Select All - + Cut - + Copy - + Paste - + Help - + About - + + File Manager + + + + + A file manager designed for LingmoOS. + + + + %1 item - + %1 items - + %1 selected - + Empty Trash @@ -319,28 +520,34 @@ OpenWithDialog - + + Open With + + + + No applications - + Set as default - + Cancel - - Open + + Show All Apps - - Open With + + + Open @@ -380,100 +587,128 @@ PlacesModel - + Home - + Desktop - + Documents - + Downloads - + Music - + Pictures - + Videos - + Trash - - + + Drives + + + Computer + + PropertiesDialog - + Type: - + Location: - + Size: - + Calculating... - + Created: - + Modified: - + Accessed: - + Cancel - + OK + + SideBar + + + Open + + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/tr_TR.ts b/translations/tr_TR.ts index ae94060..c14c1c7 100644 --- a/translations/tr_TR.ts +++ b/translations/tr_TR.ts @@ -14,12 +14,12 @@ Yeni klasör - + Cancel İptal - + OK Tamam @@ -27,37 +27,37 @@ DateHelper - + Now Şimdi - + 1 minute ago 1 dakika önce - + %1 minutes ago %1 dakika önce - + 1 hour ago 1 saat önce - + %1 hours ago %1 saat önce - + 1 day ago 1 gün önce - + %1 days ago %1 gün önce @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? Kalıcı olarak silmek istediğinizden emin misiniz? - + + Cancel İptal - + + Delete Sil + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + İptal + + + + Delete + Sil + DesktopView - Desktop - Masaüstü + Masaüstü @@ -96,17 +140,17 @@ Dosya Yöneticisi - + Do you want to permanently delete all files from the Trash? Çöp kutusundaki öğeleri kalıcı olarak silmek istediğinizden emin misiniz? - + Cancel İptal - + Empty Trash Çöpü Boşalt @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Özellikler - + %1 files %1 dosyalar @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 öğe - + %1 items %1 öğe - + The file or folder %1 does not exist. Dosyanın veya dizinin %1 yok. - + Select All Hepsini seç - File Manager - Dosya Yöneticisi + Dosya Yöneticisi - + Open - + Open with Birlikte aç - + Cut Kes - + Copy Kopyala - + Paste Yapıştır - + + New Folder Yeni Klasör - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Çöpe Taşı - + Empty Trash Çöpü Boşalt - + Delete Sil - + Rename Yeniden adlandır - + Open in Terminal Uçbirimde aç - + + Set as ... + + + + Set as Wallpaper Arkaplan olarak ayarla - + + Set as Login Screen + + + + Properties Özellikler - + Change background Arkaplanı değiştir - + Restore Onar + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + İsim + + + + Type + Tür + + + + Date + Tarih + + + + Size + Boyut + + + + View + + + + Cancel + İptal + FolderPage - + Empty folder Boş klasör - + Open - - + + Properties Özellikler - + File Dosya - + New Folder Yeni Klasör - + Quit Çıkış - + Edit Düzenle - + Select All Hepsini seç - + Cut Kes - + Copy Kopyala - + Paste Yapıştır - + Help Yardım - + About Hakkında - + + File Manager + Dosya Yöneticisi + + + + A file manager designed for LingmoOS. + + + + %1 item %1 öğe - + %1 items %1 öğe - + %1 selected %1 seçildi - + Empty Trash Çöpü Boşalt + + Main + + File Manager + Dosya Yöneticisi + + + Open + + + OpenWithDialog - + No applications Uygulama yok - + Set as default Varsayılan olarak ayarla - + Cancel İptal - + + Show All Apps + + + + + Open - + Open With Birlikte aç @@ -380,51 +613,56 @@ PlacesModel - + Home Ev - + Desktop Masaüstü - + Documents Belgeler - + Downloads İndirilenler - + Music Müzik - + Pictures Resimler - + Videos Videolar - + Trash Çöp - - + + Drives Sürücüler + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Özellikler - + Type: Tip: - + Location: Lokasyon: - + Size: Boyut: - + Calculating... Hesaplanıyor... - + Created: Oluşturuldu: - + Modified: Düzenlendi: - + Accessed: Erişildi: - + Cancel İptal - + OK Tamam @@ -482,6 +720,29 @@ %1 dosyalar + + SideBar + + + Open + + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/uk_UA.ts b/translations/uk_UA.ts index 974f6d9..343d750 100644 --- a/translations/uk_UA.ts +++ b/translations/uk_UA.ts @@ -14,12 +14,12 @@ Нова папка - + Cancel Скасувати - + OK ОК @@ -27,37 +27,37 @@ DateHelper - + Now Щойно - + 1 minute ago 1 хвилину тому - + %1 minutes ago %1 хвилин(-и) тому - + 1 hour ago 1 годину тому - + %1 hours ago %1 годин(-и) тому - + 1 day ago 1 день тому - + %1 days ago %1 дні(-в) тому @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? Ви справді бажаєте видалити це назавжди? - + + Cancel Скасувати - + + Delete Видалити + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + Скасувати + + + + Delete + Видалити + DesktopView - Desktop - Робочий стіл + Робочий стіл @@ -96,17 +140,17 @@ Провідник - + Do you want to permanently delete all files from the Trash? Ви хочете безповоротно видалити файли з кошика? - + Cancel Скасувати - + Empty Trash Очистити кошик @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties Властивості - + %1 files %1 файлів @@ -127,219 +171,408 @@ FolderModel - + %1 item %1 об'єкт - + %1 items %1 об'єкт(-ів) - + The file or folder %1 does not exist. Каталогу чи файлу %1 не існує. - + Select All Виділити усе - File Manager - Провідник + Провідник - + Open Відкрити - + Open with Відкрити за допомогою - + Cut Вирізати - + Copy Копіювати - + Paste Вставити - + + New Folder Нова папка - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash В кошик - + Empty Trash Очистити кошик - + Delete Видалити - + Rename Переіменувати - + Open in Terminal Відкрити в командному рядку - + + Set as ... + + + + Set as Wallpaper Використати як фоновий малюнок - + + Set as Login Screen + + + + Properties Властивості - + Change background Змінити фоновий малюнок - + Restore Відновити + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Ім'я + + + + Type + Тип + + + + Date + Дата + + + + Size + Розмір + + + + View + + + + Cancel + Скасувати + FolderPage - + Empty folder Пуста папка - + Open Відкрити - - + + Properties Властивості - + File Файл - + New Folder Новий каталог - + Quit Вийти - + Edit Редагувати - + Select All Виділити усе - + Cut Вирізати - + Copy Копіювати - + Paste Вставити - + Help Довідка - + About Про застосунок - + + File Manager + Провідник + + + + A file manager designed for LingmoOS. + + + + %1 item %1 об'єкт - + %1 items %1 об'єктів - + %1 selected %1 обрано - + Empty Trash Очистити кошик + + Main + + File Manager + Провідник + + + Open + Відкрити + + OpenWithDialog - + No applications Застосунків немає - + Set as default Зробити типовим - + Cancel Скасувати - + + Show All Apps + + + + + Open Відкрити - + Open With Відкрити за допомогою @@ -380,51 +613,56 @@ PlacesModel - + Home Домашня папка - + Desktop Робочий стіл - + Documents Документи - + Downloads Завантажені файли - + Music Музика - + Pictures Картинки - + Videos Відео - + Trash Кошик - - + + Drives Приводи + + + Computer + + PropertiesDialog @@ -433,47 +671,47 @@ Властивості - + Type: Тип: - + Location: Розміщення: - + Size: Розмір: - + Calculating... Вираховування... - + Created: Створено: - + Modified: Змінено: - + Accessed: Доступ : - + Cancel Скасувати - + OK ОК @@ -482,6 +720,29 @@ %1 файлів + + SideBar + + + Open + Відкрити + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/uz_UZ.ts b/translations/uz_UZ.ts index f6aecd7..13b814f 100644 --- a/translations/uz_UZ.ts +++ b/translations/uz_UZ.ts @@ -14,12 +14,12 @@ Yangi jild - + Cancel Bekor - + OK Mayli @@ -27,37 +27,37 @@ DateHelper - + Now Hozir - + 1 minute ago 1 daqiqa avval - + %1 minutes ago %1 daqiqa avval - + 1 hour ago 1 soat avval - + %1 hours ago %1 soatlar avval - + 1 day ago 1 kun aval - + %1 days ago %1 kun avval @@ -65,17 +65,62 @@ DeleteDialog - + Do you want to delete it permanently? - + + + Cancel + Bekor + + + + + Delete + O'chirish + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + Cancel Bekor - + Delete O'chirish @@ -83,9 +128,8 @@ DesktopView - Desktop - Ishchi Stol + Ishchi Stol @@ -96,17 +140,17 @@ Fayllar Boshqaruvchisi - + Do you want to permanently delete all files from the Trash? Barcha fayllarni axlat qutisidan butunlay o'chirib tashlamoqchimisiz? - + Cancel Bekor - + Empty Trash Qutichani bo'shatish @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties - + %1 files %1 fayllar @@ -127,219 +171,400 @@ FolderModel - + %1 item %1 element - + %1 items %1 element - + The file or folder %1 does not exist. - + Select All Barchasini belgilash - - File Manager - - - - + Open Ochish - + Open with - + Cut Qirqish - + Copy Nusxa olish - + Paste Joylash - + + New Folder Yangi jild - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + + + + + Extract To... + + + + + Select Destination + + + + + ZIP Archive + + + + + TAR Archive + + + + + 7-Zip Archive + + + + + + Refresh + + + + + TAR Archive (gzip) + + + + + TAR Archive (bzip2) + + + + + TAR Archive (xz) + + + + + TAR Archive (zstd) + + + + + TAR Archive (uncompressed) + + + + Move To Trash Savatchaga joylash - + Empty Trash Savatchani tozalash - + Delete O'chirish - + Rename Qayta nomlash - + Open in Terminal Terminalda ochish - + + Set as ... + + + + Set as Wallpaper Fon rasmi - + + Set as Login Screen + + + + Properties Xususiyatlari - + Change background Fon rasmini almashtirish - + Restore + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + + + + + Huge + + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + + + + + Name + Nom + + + + Type + + + + + Date + Sana + + + + Size + O'lcham + + + + View + + + + Cancel + Bekor + FolderPage - + Empty folder Bo'sh jild - + Open Ochish - - + + Properties Xususiyatlar - + File - + New Folder Yangi jild - + Quit - + Edit - + Select All Barchasini belgilash - + Cut Qirqish - + Copy Nusxa olish - + Paste Joylash - + Help - + About - + + File Manager + + + + + A file manager designed for LingmoOS. + + + + %1 item %1 element - + %1 items %1 element - + %1 selected %1 belgilangan - + Empty Trash Savatchani bo'shatish + + Main + + Open + Ochish + + OpenWithDialog - + No applications - + Set as default - + Cancel Bekor - + + Show All Apps + + + + + Open Ochish - + Open With @@ -380,51 +605,56 @@ PlacesModel - + Home Uy - + Desktop Ishchi Stol - + Documents Hujjatlar - + Downloads Yuklanmalar - + Music Misiqalar - + Pictures Suratlar - + Videos VIdeolar - + Trash Savatcha - - + + Drives + + + Computer + + PropertiesDialog @@ -433,47 +663,47 @@ Xususiyatlar - + Type: Turi: - + Location: Joylashuvi: - + Size: O'lchami: - + Calculating... Hisoblanmoqda... - + Created: Yaratildi: - + Modified: O'zgartirildi: - + Accessed: Kirish: - + Cancel Bekor - + OK OK @@ -482,6 +712,29 @@ %1 fayllar + + SideBar + + + Open + Ochish + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main diff --git a/translations/zh_CN.ts b/translations/zh_CN.ts index 97584e3..1782fde 100644 --- a/translations/zh_CN.ts +++ b/translations/zh_CN.ts @@ -27,37 +27,37 @@ DateHelper - + Now 现在 - + 1 minute ago 一分钟前 - + %1 minutes ago %1分钟前 - + 1 hour ago 一小时前 - + %1 hours ago %1小时前 - + 1 day ago 一天前 - + %1 days ago %1天前 @@ -65,27 +65,71 @@ DeleteDialog - + Do you want to delete it permanently? 是否要永久删除? - + + Cancel 取消 - + + Delete 删除 + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + 取消 + + + + Delete + 删除 + DesktopView - Desktop - 桌面 + 桌面 @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties 属性 - + %1 files %1 项 @@ -127,128 +171,271 @@ FolderModel - + %1 item %1 项 - + %1 items %1 项 - + The file or folder %1 does not exist. 文件或文件夹 %1 不存在。 - + Select All 全选 - File Manager - 文件管理器 + 文件管理器 - + Open 打开 - + Open with 打开方式 - + Cut 剪切 - + Copy 复制 - + Paste 粘贴 - - + + New Folder 新建文件夹 - - + + New Text 新建文本 - - + + New Documents 新建文档 - + + Extract Here + 解压到此处 + + + + Extract To... + 解压到... + + + + Select Destination + 选择目标位置 + + + + ZIP Archive + ZIP 压缩包 + + + + TAR Archive + TAR 压缩包 + + + + 7-Zip Archive + 7-Zip 压缩包 + + + + + Refresh + 刷新 + + + + TAR Archive (gzip) + TAR 压缩包 (gzip) + + + + TAR Archive (bzip2) + TAR 压缩包 (bzip2) + + + + TAR Archive (xz) + TAR 压缩包 (xz) + + + + TAR Archive (zstd) + TAR 压缩包 (zstd) + + + + TAR Archive (uncompressed) + TAR 压缩包 (未压缩) + + + Move To Trash 移动到回收站 - + Empty Trash 清空回收站 - + Delete 删除 - + Rename 重命名 - + Open in Terminal 在终端中打开 - + + Set as ... + 设为... + + + Set as Wallpaper 设置为壁纸 - + + Set as Login Screen + 设置为登陆屏幕壁纸 + + + Properties 属性 - + Change background 更改桌面背景 - + Restore 恢复 - + Show hidden files 显示隐藏文件 - + Open in new window 在新窗口中打开 + + + Sort by + 排序方式 + + + + Name + 名称 + + + + Type + 类型 + + + + Date + 日期 + + + + Size + 大小 + + + + View + 查看 + + + Cancel + 取消 + + + + Icon Size + 图标大小 + + + + Huge + 超大 + + + + Large + + + + + Normal + + + + + Small + + + + Auto Arrange + 自动排列 + + + + Compress + 压缩 + + + + Extract + 解压缩 + FolderPage @@ -349,30 +536,47 @@ 清空回收站 + + Main + + File Manager + 文件管理器 + + + Open + 打开 + + OpenWithDialog - + No applications 没有应用程序 - + Set as default 设置为默认 - + Cancel 取消 - + + Show All Apps + 显示所有程序 + + + + Open 打开 - + Open With 打开方式 @@ -413,53 +617,53 @@ PlacesModel - + Home 主文件夹 - + Desktop 桌面 - + Documents 文档 - + Downloads 下载 - + Music 音乐 - + Pictures 图片 - + Videos 视频 - + Trash 回收站 - - + + Drives 设备 - + Computer 计算机 @@ -515,26 +719,42 @@ SideBar - + Open 打开 - + Open in new window 在新窗口中打开 - + Eject 弹出 - + Unmount 卸载 + + View + + View + 查看 + + + + Wallpaper + + %1 +Lingmo OS Developer preview version + %1 +灵墨操作系统 开发者预览版本 + + main diff --git a/translations/zh_TW.ts b/translations/zh_TW.ts index 2e7c82c..474e068 100644 --- a/translations/zh_TW.ts +++ b/translations/zh_TW.ts @@ -14,12 +14,12 @@ 新建資料夾 - + Cancel 取消 - + OK @@ -27,37 +27,37 @@ DateHelper - + Now 當前 - + 1 minute ago 1 分鐘前 - + %1 minutes ago %1 分鐘前 - + 1 hour ago 1 小時前 - + %1 hours ago %1 小時前 - + 1 day ago 1 天前 - + %1 days ago %1 天前 @@ -65,17 +65,62 @@ DeleteDialog - + Do you want to delete it permanently? 是否要永久刪除此文件 - + + Cancel 取消 - + + + Delete + 刪除 + + + + Delete Files + + + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + DeleteDialogForever + + + Are you sure you want to permanently delete "%1"? + + + + + Are you sure you want to permanently delete %1 files? + + + + + Once deleted, these files cannot be recovered. + + + + + Cancel + 取消 + + + Delete 刪除 @@ -83,9 +128,8 @@ DesktopView - Desktop - 桌面 + 桌面 @@ -96,17 +140,17 @@ 檔案管理員 - + Do you want to permanently delete all files from the Trash? 是否要永久刪除回收筒中的所有文件? - + Cancel 取消 - + Empty Trash 清空回收筒 @@ -114,12 +158,12 @@ FilePropertiesDialog - + Properties 屬性 - + %1 files %1 檔案 @@ -127,219 +171,404 @@ FolderModel - + %1 item %1 件物品 - + %1 items %1 件物品 - + The file or folder %1 does not exist. 這個文件或文件夾%1不存在。 - + Select All 選擇全部 - File Manager - 檔案管理員 + 檔案管理員 - + Open 開啟 - + Open with 用什麼打開 - + Cut 剪下 - + Copy 拷貝 - + Paste 貼上 - + + New Folder 新建資料夾 - + + + New Text + + + + + + New Documents + + + + + Compress + + + + + Extract + + + + + Extract Here + 解壓到此處 + + + + Extract To... + 解壓到... + + + + Select Destination + 選擇目標位置 + + + + ZIP Archive + ZIP 壓縮包 + + + + TAR Archive + TAR 壓縮包 + + + + 7-Zip Archive + 7-Zip 壓縮包 + + + + + Refresh + 刷新 + + + + TAR Archive (gzip) + TAR 壓縮包 (gzip) + + + + TAR Archive (bzip2) + TAR 壓縮包 (bzip2) + + + + TAR Archive (xz) + TAR 壓縮包 (xz) + + + + TAR Archive (zstd) + TAR 壓縮包 (zstd) + + + + TAR Archive (uncompressed) + TAR 壓縮包 (未壓縮) + + + Move To Trash 移至回收筒 - + Empty Trash 清空回收筒 - + Delete 刪除 - + Rename 重新命名 - + Open in Terminal 在終端機中開啓 - + + Set as ... + + + + Set as Wallpaper 設為桌布 - + + Set as Login Screen + + + + Properties 屬性 - + Change background 更換背景 - + Restore 還原 + + + Show hidden files + + + + + Open in new window + + + + + Icon Size + 圖標大小 + + + + Huge + 超大 + + + + Large + + + + + Normal + + + + + Small + + + + + Sort by + 排序方式 + + + + Name + 名稱 + + + + Type + + + + + Date + 日期 + + + + Size + 尺寸 + + + + View + + + + Cancel + 取消 + FolderPage - + Empty folder 空資料夾 - + Open 開啓 - - + + Properties 屬性 - + File 文件 - + New Folder 新建資料夾 - + Quit - + Edit - + Select All 選擇全部 - + Cut 剪下 - + Copy 拷貝 - + Paste 貼上 - + Help - + About - + + File Manager + 檔案管理員 + + + + A file manager designed for LingmoOS. + + + + %1 item %1 件物品 - + %1 items %1 件物品 - + %1 selected 已選 %1 件 - + Empty Trash 清空回收站 + + Main + + File Manager + 檔案管理員 + + OpenWithDialog - + No applications - + Set as default - + Cancel 取消 - + + Show All Apps + + + + + Open - + Open With @@ -380,51 +609,56 @@ PlacesModel - + Home 個人資料夾 - + Desktop 桌面 - + Documents 文件 - + Downloads 下載 - + Music 音樂 - + Pictures 圖片 - + Videos 影片 - + Trash 回收筒 - - + + Drives + + + Computer + + PropertiesDialog @@ -433,47 +667,47 @@ 屬性 - + Type: 類別: - + Location: 位置: - + Size: 大小: - + Calculating... 計算中… - + Created: 建立時間: - + Modified: 修改時間: - + Accessed: 訪問時間: - + Cancel 取消 - + OK @@ -482,6 +716,29 @@ %1 檔案 + + SideBar + + + Open + + + + + Open in new window + + + + + Eject + + + + + Unmount + + + main