mirror of
https://github.com/QRouland/UTPass.git
synced 2025-07-06 11:52:29 +00:00
Compare commits
35 Commits
0.0.1
...
63d53caad5
Author | SHA1 | Date | |
---|---|---|---|
63d53caad5 | |||
62c19f8ff9 | |||
37c481ece1 | |||
c6d7a025ff | |||
cec4e7dabc | |||
a9b979b011 | |||
42efea67d8 | |||
1818d3d7e8 | |||
df5321644a | |||
774019f4d0 | |||
a1b87a7b45 | |||
5d92b767a7 | |||
6a419c5a05 | |||
5bb5d36630 | |||
3264c26358 | |||
d53a012565 | |||
49c992aa8d | |||
123df71a5b | |||
fab14a395e | |||
cd3dc273b0 | |||
30727fde23 | |||
a6113f26ec | |||
09a58ee24b | |||
a722e7c261 | |||
17a533a2ef | |||
98ae4cc3d9 | |||
b48d9381f2 | |||
378e19e205 | |||
2e98d4356b | |||
7e4ef02f8c | |||
418b64a191 | |||
96e79d97c4 | |||
ace251c209 | |||
ae52834946 | |||
4f036e2d95 |
2
.github/FUNDING.yml
vendored
Normal file
2
.github/FUNDING.yml
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
ko_fi: qrouland # Replace with a single Ko-fi username
|
||||
|
13
.gitignore
vendored
13
.gitignore
vendored
@ -1,5 +1,6 @@
|
||||
# Builds dirs
|
||||
build*
|
||||
.cache
|
||||
|
||||
# IDE & Devs tools
|
||||
.clickable
|
||||
@ -10,13 +11,7 @@ build*
|
||||
*.kdev4
|
||||
*swp
|
||||
scripts
|
||||
CMakeLists.txt.*
|
||||
|
||||
# Third parties ouput dir
|
||||
libs/third/local
|
||||
|
||||
|
||||
# desktop
|
||||
desktop
|
||||
|
||||
# Test (Not Ready yet !)
|
||||
tests
|
||||
# venv
|
||||
venv
|
||||
|
30
.gitmodules
vendored
30
.gitmodules
vendored
@ -1,30 +0,0 @@
|
||||
[submodule "third/gpgme"]
|
||||
path = libs/gpg/gpgme
|
||||
url = https://github.com/gpg/gpgme
|
||||
[submodule "third/libassuan"]
|
||||
path = libs/gpg/libassuan
|
||||
url = https://github.com/gpg/libassuan
|
||||
[submodule "third/libgpg-error"]
|
||||
path = libs/gpg/libgpg-error
|
||||
url = https://github.com/gpg/libgpg-error
|
||||
[submodule "third/gnupg"]
|
||||
path = libs/gpg/gnupg
|
||||
url = https://github.com/gpg/gnupg
|
||||
[submodule "libs/utils/quazip"]
|
||||
path = libs/quazip
|
||||
url = https://github.com/stachenov/quazip
|
||||
[submodule "libs/gpg/gpgme"]
|
||||
path = libs/gpg/gpgme
|
||||
url = https://github.com/gpg/gpgme
|
||||
[submodule "libs/gpg/libassuan"]
|
||||
path = libs/gpg/libassuan
|
||||
url = https://github.com/gpg/libassuan
|
||||
[submodule "libs/gpg/libgpg-error"]
|
||||
path = libs/gpg/libgpg-error
|
||||
url = https://github.com/gpg/libgpg-error
|
||||
[submodule "libs/gpg/gnupg"]
|
||||
path = libs/gpg/gnupg
|
||||
url = https://github.com/gpg/gnupg
|
||||
[submodule "libs/quazip"]
|
||||
path = libs/quazip
|
||||
url = https://github.com/stachenov/quazip
|
@ -28,7 +28,7 @@ set(PROJECT_NAME "UTPass")
|
||||
set(FULL_PROJECT_NAME "utpass.qrouland")
|
||||
set(CMAKE_INSTALL_PREFIX /)
|
||||
set(DATA_DIR /)
|
||||
set(BIN_DIR ${DATA_DIR}lib/bin)
|
||||
# set(BIN_DIR ${DATA_DIR}lib/bin)
|
||||
set(DESKTOP_FILE_NAME ${PROJECT_NAME}.desktop)
|
||||
|
||||
add_executable(${PROJECT_NAME} main.cpp)
|
||||
@ -48,13 +48,15 @@ install(FILES ${PROJECT_NAME}.contenthub DESTINATION ${DATA_DIR})
|
||||
install(FILES LICENSE DESTINATION ${DATA_DIR})
|
||||
install(DIRECTORY qml DESTINATION ${DATA_DIR})
|
||||
install(DIRECTORY assets DESTINATION ${DATA_DIR})
|
||||
file(GLOB_RECURSE BIN_FILES
|
||||
"build/${ARCH_TRIPLET}/gpg/local/bin/*")
|
||||
install(
|
||||
FILES ${BIN_FILES}
|
||||
PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
|
||||
DESTINATION ${BIN_DIR}
|
||||
)
|
||||
|
||||
# file(GLOB_RECURSE BIN_FILES
|
||||
# "/usr/bin/gpg*"
|
||||
# )
|
||||
# install(
|
||||
# FILES ${BIN_FILES}
|
||||
# PERMISSIONS OWNER_EXECUTE OWNER_READ GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
|
||||
# DESTINATION ${BIN_DIR}
|
||||
# )
|
||||
|
||||
# Translations
|
||||
file(GLOB_RECURSE I18N_SRC_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/po qml/*.qml qml/*.js)
|
||||
@ -81,4 +83,3 @@ add_subdirectory(po)
|
||||
add_subdirectory(plugins)
|
||||
|
||||
add_custom_target(${PROJECT_NAME}_FILES ALL SOURCES ${PROJECT_SRC_FILES})
|
||||
|
||||
|
52
README.md
52
README.md
@ -8,19 +8,48 @@ UTPass is avalaible on the [OpenStore](open-store.io)
|
||||
|
||||
[](https://open-store.io/app/utpass.qrouland)
|
||||
|
||||
## Build & Tests
|
||||
|
||||
See [Build & Tests wiki page](https://taiga.rdrive.ovh/project/utpass/wiki/build-tests)
|
||||
|
||||
## Contributing & Issues
|
||||
|
||||
See [Contributing wiki page](https://taiga.rdrive.ovh/project/utpass/wiki/contributing)
|
||||
|
||||
## Features
|
||||
|
||||
The goal is to be closest possible of the features offer by [ZX2C4’s pass command line application](https://www.passwordstore.org/).
|
||||
See [Features wiki page](https://taiga.rdrive.ovh/project/utpass/wiki/contributing) for details.
|
||||
|
||||
## Export/Import
|
||||
|
||||
Assuming that there are already passwords in another device using [ZX2C4’s pass command line application](https://www.passwordstore.org/) and, therefore, that [gpg keys](https://gnupg.org/) have been previously generated for encryption purposes, these may be helpful commands:
|
||||
|
||||
Export gpg private keys in order to decrypt passwords:
|
||||
```
|
||||
gpg --output keys.gpg --export-secret-keys
|
||||
```
|
||||
|
||||
Export passwords, assuming they reside in *.password-store* folder:
|
||||
```
|
||||
zip passwords.zip -r .password-store/
|
||||
```
|
||||
|
||||
Both files have the correct format for UTPass to import them and work as intended. It is highly recommended to remove them after imported to **UTPass**.
|
||||
|
||||
|
||||
## Build & Tests
|
||||
|
||||
See [Build & Tests wiki page](https://github.com/QRouland/UTPass/wiki/Build-&-Tests)
|
||||
|
||||
## Contributing & Issues
|
||||
|
||||
See [Contributing wiki page](https://github.com/QRouland/UTPass/wiki/Contributing)
|
||||
|
||||
|
||||
## Useful Links
|
||||
|
||||
Some useful links related to UTPass development :
|
||||
* [Ubports](https://ubports.com/) : Ubuntu Touch Community
|
||||
* [ZX2C4’s pass command line application](https://www.passwordstore.org/) : the standard unix password manager.
|
||||
* [Clickable](https://github.com/bhdouglass/clickable) : Compile, build, and deploy Ubuntu Touch click packages
|
||||
* [GnuPG](https://gnupg.org/): The GNU Privacy Guard
|
||||
* [Gpgme](https://www.gnupg.org/software/gpgme/index.html) : GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG easier for applications
|
||||
|
||||
|
||||
## License
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
@ -37,12 +66,3 @@ See [Features wiki page](https://taiga.rdrive.ovh/project/utpass/wiki/contributi
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
## Useful Links
|
||||
|
||||
Some useful links related to UTPass development :
|
||||
* [Ubports](https://ubports.com/) : Ubuntu Touch Community
|
||||
* [ZX2C4’s pass command line application](https://www.passwordstore.org/) : the standard unix password manager.
|
||||
* [Clickable](https://github.com/bhdouglass/clickable) : Compile, build, and deploy Ubuntu Touch click packages
|
||||
* [Gpgme](https://www.gnupg.org/software/gpgme/index.html) : GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG easier for applications
|
||||
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"policy_groups": [
|
||||
"content_exchange"
|
||||
"content_exchange",
|
||||
"networking"
|
||||
],
|
||||
"policy_version": 16.04
|
||||
"policy_version": 20.04
|
||||
}
|
||||
|
@ -4,4 +4,4 @@ Exec=UTPass
|
||||
Icon=assets/logo.svg
|
||||
Terminal=false
|
||||
Type=Application
|
||||
X-Ubuntu-Touch=true
|
||||
X-Lomiri-Touch=true
|
||||
|
@ -1,22 +0,0 @@
|
||||
{
|
||||
"template": "cmake",
|
||||
"kill": "UTPass",
|
||||
"scripts": {
|
||||
"style": "echo 'Astyle :' && astyle --options=.astylerc main.cpp && astyle --options=.astylerc --recursive 'plugins/*.cpp,*.h' && echo 'QmlFmt :' && qmlfmt -l tests && qmlfmt -w tests && qmlfmt -l qml && qmlfmt -w qml"
|
||||
},
|
||||
"libraries": {
|
||||
"gpg": {
|
||||
"template": "cmake",
|
||||
"make_jobs": 4,
|
||||
"dependencies_build": [
|
||||
"texinfo",
|
||||
"gpgsm",
|
||||
"bison"
|
||||
]
|
||||
},
|
||||
"quazip": {
|
||||
"template": "cmake",
|
||||
"make_jobs": 4
|
||||
}
|
||||
}
|
||||
}
|
28
clickable.yaml
Normal file
28
clickable.yaml
Normal file
@ -0,0 +1,28 @@
|
||||
clickable_minimum_required: 8
|
||||
builder: cmake
|
||||
kill: UTPass
|
||||
|
||||
scripts:
|
||||
style: >-
|
||||
echo 'Astyle :' && astyle --options=.astylerc main.cpp && astyle
|
||||
--options=.astylerc --recursive 'plugins/*.cpp,*.h' && echo 'QmlFmt :' &&
|
||||
qmlfmt -l tests && qmlfmt -w tests && qmlfmt -l qml && qmlfmt -w qml
|
||||
|
||||
dependencies_target:
|
||||
- libgpgmepp-dev
|
||||
- libgpgme-dev
|
||||
- libgit2-dev
|
||||
- libquazip5-dev
|
||||
- gpg
|
||||
|
||||
install_lib:
|
||||
- "libgpg-error.so.0.28.0"
|
||||
- "libassuan.so"
|
||||
- "libgpgme.so"
|
||||
- "libgpgmepp.so"
|
||||
- "libqgpgme.so.7"
|
||||
- "libgit2.so"
|
||||
- "libquazip5.so"
|
||||
|
||||
install_bin:
|
||||
- "gpg"
|
@ -1,68 +0,0 @@
|
||||
cmake_minimum_required(VERSION 3.5.1)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
||||
include(${CMAKE_ROOT}/Modules/ExternalProject.cmake)
|
||||
|
||||
execute_process(
|
||||
COMMAND dpkg-architecture -qDEB_HOST_MULTIARCH
|
||||
OUTPUT_VARIABLE ARCH_TRIPLET
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||
)
|
||||
|
||||
execute_process (
|
||||
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/clean.sh ${ARCH_TRIPLET}
|
||||
)
|
||||
|
||||
set(EXTERNAL_LIBS "${CMAKE_CURRENT_BINARY_DIR}/local/")
|
||||
set(THIRD_PATH "${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
set(LIBGPGERROR_PATH "${THIRD_PATH}/libgpg-error")
|
||||
set(LIBASSUAN_PATH "${THIRD_PATH}/libassuan")
|
||||
set(LIBGPGME_PATH "${THIRD_PATH}/gpgme")
|
||||
set(GNUPG_PATH "${THIRD_PATH}/gnupg")
|
||||
|
||||
ExternalProject_Add(
|
||||
LibGpgError
|
||||
INSTALL_DIR ${EXTERNAL_LIBS}
|
||||
DOWNLOAD_COMMAND ""
|
||||
SOURCE_DIR ${LIBGPGERROR_PATH}
|
||||
CONFIGURE_COMMAND <SOURCE_DIR>/autogen.sh && <SOURCE_DIR>/configure --prefix=${EXTERNAL_LIBS} --enable-static=yes --enable-shared=no --with-pic=yes --enable-maintainer-mode --host ${ARCH_TRIPLET} --disable-doc --disable-dependency-tracking
|
||||
BUILD_IN_SOURCE 1
|
||||
BUILD_COMMAND make
|
||||
INSTALL_COMMAND make install
|
||||
)
|
||||
|
||||
ExternalProject_Add(
|
||||
LibGpgAssuan
|
||||
DEPENDS LibGpgError
|
||||
INSTALL_DIR ${EXTERNAL_LIBS}
|
||||
DOWNLOAD_COMMAND ""
|
||||
SOURCE_DIR ${LIBASSUAN_PATH}
|
||||
CONFIGURE_COMMAND <SOURCE_DIR>/autogen.sh && <SOURCE_DIR>/configure --prefix=${EXTERNAL_LIBS} --enable-static=yes --enable-shared=no --with-pic=yes --enable-maintainer-mode --with-libgpg-error-prefix=${EXTERNAL_LIBS} --host ${ARCH_TRIPLET} --disable-doc --disable-dependency-tracking
|
||||
BUILD_IN_SOURCE 1
|
||||
BUILD_COMMAND make
|
||||
INSTALL_COMMAND make install
|
||||
)
|
||||
|
||||
ExternalProject_Add(
|
||||
LibGpgme
|
||||
DEPENDS LibGpgError LibGpgAssuan
|
||||
INSTALL_DIR ${EXTERNAL_LIBS}
|
||||
DOWNLOAD_COMMAND ""
|
||||
SOURCE_DIR ${LIBGPGME_PATH}
|
||||
CONFIGURE_COMMAND <SOURCE_DIR>/autogen.sh && <SOURCE_DIR>/configure --enable-languages=cpp,qt --enable-static=yes --enable-shared=no --with-pic=yes --prefix=${EXTERNAL_LIBS} --enable-maintainer-mode --with-libgpg-error-prefix=${EXTERNAL_LIBS} --with-libassuan-prefix=${EXTERNAL_LIBS} --host ${ARCH_TRIPLET} --disable-doc --disable-largefile --disable-dependency-tracking
|
||||
BUILD_IN_SOURCE 1
|
||||
BUILD_COMMAND make
|
||||
INSTALL_COMMAND make install
|
||||
)
|
||||
|
||||
|
||||
ExternalProject_Add(
|
||||
Gnupg
|
||||
DEPENDS LibGpgError LibGpgAssuan
|
||||
INSTALL_DIR ${EXTERNAL_LIBS}
|
||||
DOWNLOAD_COMMAND ""
|
||||
SOURCE_DIR ${GNUPG_PATH}
|
||||
CONFIGURE_COMMAND <SOURCE_DIR>/autogen.sh && <SOURCE_DIR>/configure --prefix=${EXTERNAL_LIBS} --with-libgpg-error-prefix=${EXTERNAL_LIBS} --with-libassuan-prefix=${EXTERNAL_LIBS} --enable-maintainer-mode --with-libassuan-prefix=${EXTERNAL_LIBS} --host ${ARCH_TRIPLET} --disable-doc --disable-dependency-tracking
|
||||
BUILD_IN_SOURCE 1
|
||||
BUILD_COMMAND make
|
||||
INSTALL_COMMAND make install
|
||||
)
|
@ -1,14 +0,0 @@
|
||||
#!/bin/bash
|
||||
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
|
||||
|
||||
if [ ! -z "$1" ] && [ -d $SCRIPTPATH/../../build/$1/gpg ]; then
|
||||
rm -rf $SCRIPTPATH/../../build/$1/gpg
|
||||
fi
|
||||
|
||||
git submodule update --init --recursive
|
||||
|
||||
for LIB in $SCRIPTPATH/*/
|
||||
do
|
||||
echo $LIB
|
||||
cd $LIB && git clean -xdf && git reset --hard HEAD
|
||||
done
|
Submodule libs/gpg/gnupg deleted from 8ae6a246be
Submodule libs/gpg/gpgme deleted from ea11c2a13c
Submodule libs/gpg/libassuan deleted from 4de3154ea6
Submodule libs/gpg/libgpg-error deleted from 85f427fd28
Submodule libs/quazip deleted from 4df6c7412e
@ -10,7 +10,7 @@
|
||||
"content-hub": "UTPass.contenthub"
|
||||
}
|
||||
},
|
||||
"version": "0.0.1",
|
||||
"version": "0.0.3-dev",
|
||||
"maintainer": "Quentin Rouland <quentin@qrouland.com>",
|
||||
"framework" : "ubuntu-sdk-16.04"
|
||||
"framework" : "ubuntu-sdk-20.04"
|
||||
}
|
||||
|
@ -4,6 +4,7 @@ set(PLUGIN "Pass")
|
||||
set(
|
||||
SRC
|
||||
plugin.cpp
|
||||
git.cpp
|
||||
pass.cpp
|
||||
gpg.cpp
|
||||
passkeymodel.h
|
||||
@ -26,29 +27,29 @@ add_library(${PLUGIN} MODULE ${SRC})
|
||||
set_target_properties(${PLUGIN} PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${PLUGIN})
|
||||
qt5_use_modules(${PLUGIN} Qml Quick DBus)
|
||||
|
||||
set(EXTERNAL_LIBS "${CMAKE_SOURCE_DIR}/build/${ARCH_TRIPLET}/gpg/local/")
|
||||
|
||||
INCLUDE_DIRECTORIES(${EXTERNAL_LIBS}/include)
|
||||
add_library(gpgerror SHARED IMPORTED)
|
||||
set_property(TARGET gpgerror PROPERTY IMPORTED_LOCATION "/usr/lib/${ARCH_TRIPLET}/libgpg-error.so.0.28.0")
|
||||
|
||||
add_library(GpgError STATIC IMPORTED)
|
||||
set_property(TARGET GpgError PROPERTY IMPORTED_LOCATION "${EXTERNAL_LIBS}/lib/libgpg-error.a")
|
||||
add_library(libassuan SHARED IMPORTED)
|
||||
set_property(TARGET libassuan PROPERTY IMPORTED_LOCATION "/usr/lib/${ARCH_TRIPLET}/libassuan.so")
|
||||
|
||||
add_library(GpgAssuan STATIC IMPORTED)
|
||||
set_property(TARGET GpgAssuan PROPERTY IMPORTED_LOCATION "${EXTERNAL_LIBS}/lib/libassuan.a")
|
||||
add_library(libgpgme SHARED IMPORTED)
|
||||
set_property(TARGET libgpgme PROPERTY IMPORTED_LOCATION "/usr/lib/${ARCH_TRIPLET}/libgpgme.so")
|
||||
|
||||
add_library(Gpgme STATIC IMPORTED)
|
||||
set_property(TARGET Gpgme PROPERTY IMPORTED_LOCATION "${EXTERNAL_LIBS}/lib/libgpgme.a")
|
||||
add_library(libgpgmepp SHARED IMPORTED)
|
||||
set_property(TARGET libgpgmepp PROPERTY IMPORTED_LOCATION "/usr/lib/${ARCH_TRIPLET}/libgpgmepp.so")
|
||||
|
||||
add_library(Gpgmepp STATIC IMPORTED)
|
||||
set_property(TARGET Gpgmepp PROPERTY IMPORTED_LOCATION "${EXTERNAL_LIBS}/lib/libgpgmepp.a")
|
||||
add_library(libqgpgme SHARED IMPORTED)
|
||||
set_property(TARGET libqgpgme PROPERTY IMPORTED_LOCATION "/usr/lib/${ARCH_TRIPLET}/libqgpgme.so.7")
|
||||
|
||||
add_library(QGpgme STATIC IMPORTED)
|
||||
set_property(TARGET QGpgme PROPERTY IMPORTED_LOCATION "${EXTERNAL_LIBS}/lib/libqgpgme.a")
|
||||
|
||||
target_link_libraries(${PLUGIN} QGpgme Gpgmepp Gpgme GpgAssuan GpgError)
|
||||
add_library(libgit2 SHARED IMPORTED)
|
||||
set_property(TARGET libgit2 PROPERTY IMPORTED_LOCATION "/usr/lib/${ARCH_TRIPLET}/libgit2.so")
|
||||
|
||||
target_link_libraries(${PLUGIN} gpgerror libassuan libgpgme libgpgmepp libgit2)
|
||||
|
||||
|
||||
set(QT_IMPORTS_DIR "/lib/${ARCH_TRIPLET}")
|
||||
|
||||
install(TARGETS ${PLUGIN} DESTINATION ${QT_IMPORTS_DIR}/${PLUGIN}/)
|
||||
install(FILES qmldir DESTINATION ${QT_IMPORTS_DIR}/${PLUGIN}/)
|
||||
|
26
plugins/Pass/git.cpp
Normal file
26
plugins/Pass/git.cpp
Normal file
@ -0,0 +1,26 @@
|
||||
|
||||
|
||||
|
||||
#include <QDebug>
|
||||
#include <QUrl>
|
||||
extern "C" {
|
||||
#include <git2.h>
|
||||
}
|
||||
|
||||
#include "git.h"
|
||||
|
||||
|
||||
|
||||
Git::Git()
|
||||
{
|
||||
git_libgit2_init();
|
||||
}
|
||||
|
||||
Git::~Git() {
|
||||
git_libgit2_shutdown();
|
||||
}
|
||||
|
||||
bool Git::clone(QString url)
|
||||
{
|
||||
return false;
|
||||
}
|
27
plugins/Pass/git.h
Normal file
27
plugins/Pass/git.h
Normal file
@ -0,0 +1,27 @@
|
||||
#ifndef GIT_H
|
||||
#define GIT_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QUrl>
|
||||
#include <memory>
|
||||
|
||||
class Git
|
||||
{
|
||||
private:
|
||||
Git();
|
||||
public:
|
||||
|
||||
~Git();
|
||||
|
||||
static std::shared_ptr<Git> instance()
|
||||
{
|
||||
static std::shared_ptr<Git> s{new Git};
|
||||
return s;
|
||||
}
|
||||
Git(Git const &) = delete;
|
||||
void operator=(Git const &) = delete;
|
||||
|
||||
bool clone(QString url);
|
||||
};
|
||||
|
||||
#endif
|
@ -4,7 +4,6 @@
|
||||
#include <QDir>
|
||||
#include <QtCore/QStandardPaths>
|
||||
|
||||
|
||||
#include <gpgme.h>
|
||||
#include <gpgme++/data.h>
|
||||
#include <gpgme++/global.h>
|
||||
@ -24,8 +23,8 @@
|
||||
#include <qgpgme/changeownertrustjob.h>
|
||||
|
||||
#include "gpg.h"
|
||||
#include "pass.h"
|
||||
#include "passphraseprovider.h"
|
||||
#include "qprocess.h"
|
||||
|
||||
|
||||
|
||||
@ -37,8 +36,6 @@ Gpg::Gpg()
|
||||
{
|
||||
m_window = nullptr;
|
||||
|
||||
initializeLibrary();
|
||||
|
||||
Gpg::initGpgConfig();
|
||||
|
||||
auto error = checkEngine(OpenPGP);
|
||||
@ -66,15 +63,32 @@ QString Gpg::initGpgHome()
|
||||
}
|
||||
|
||||
|
||||
QString Gpg::findCommandPath(const QString &command) {
|
||||
// Retrieve the PATH environment variable
|
||||
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
|
||||
QString pathEnv = env.value("PATH");
|
||||
|
||||
// Split the PATH by colon
|
||||
QStringList pathDirs = pathEnv.split(":", QString::SkipEmptyParts);
|
||||
|
||||
// Check each directory in the PATH
|
||||
foreach (const QString &dir, pathDirs) {
|
||||
QFileInfo fileInfo(QDir(dir).filePath(command));
|
||||
|
||||
// If the file exists and is executable, return the path
|
||||
if (fileInfo.exists() && fileInfo.isExecutable()) {
|
||||
return fileInfo.absoluteFilePath();
|
||||
}
|
||||
}
|
||||
|
||||
return QString::null;
|
||||
}
|
||||
|
||||
QString Gpg::initGpgExec()
|
||||
{
|
||||
QString path = QDir::currentPath().append("/lib/bin/gpg");
|
||||
QFileInfo file(path);
|
||||
if (!file.isFile()) {
|
||||
qFatal("GNUPGEXEC file not found !");
|
||||
}
|
||||
if (!file.isExecutable()) {
|
||||
qFatal("GNUPGEXEC file not executable !");
|
||||
QString path = findCommandPath("gpg");
|
||||
if (path.isNull()) {
|
||||
qFatal("No valid gpg exec found !");
|
||||
}
|
||||
return path;
|
||||
}
|
||||
@ -82,20 +96,30 @@ QString Gpg::initGpgExec()
|
||||
|
||||
void Gpg::initGpgConfig()
|
||||
{
|
||||
auto home = initGpgHome();
|
||||
auto exec = initGpgExec();
|
||||
initializeLibrary();
|
||||
gpgme_set_global_flag("disable-gpgconf", "1");
|
||||
|
||||
QString home = initGpgHome();
|
||||
qDebug() << "Gpg home is " << home;
|
||||
QString exec = initGpgExec();
|
||||
qDebug() << "Gpg exec is " << exec;
|
||||
|
||||
QFile agentConf(home + QStringLiteral("/gpg-agent.conf"));
|
||||
agentConf.remove();
|
||||
agentConf.open(QIODevice::WriteOnly);
|
||||
agentConf.write("allow-loopback-pinentry");
|
||||
agentConf.write("allow-loopback-pinentry\n");
|
||||
agentConf.close();
|
||||
|
||||
gpgme_set_engine_info (
|
||||
auto err = gpgme_set_engine_info (
|
||||
GPGME_PROTOCOL_OpenPGP,
|
||||
exec.toLocal8Bit().data(),
|
||||
home.toLocal8Bit().data()
|
||||
);
|
||||
if (err != GPG_ERR_NO_ERROR) {
|
||||
qDebug() << "Error code : " << err;
|
||||
qDebug() << "Error str : " << gpg_strerror(err);
|
||||
qFatal("GPGME set engine info failed !");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -15,6 +15,7 @@ private:
|
||||
Gpg();
|
||||
QObject *m_window;
|
||||
|
||||
QString findCommandPath(const QString &command);
|
||||
QString initGpgHome();
|
||||
QString initGpgExec();
|
||||
void initGpgConfig();
|
||||
|
@ -3,8 +3,8 @@
|
||||
#include <QtCore/QDir>
|
||||
|
||||
#include "pass.h"
|
||||
#include "git.h"
|
||||
#include "gpg.h"
|
||||
#include "passphraseprovider.h"
|
||||
#include "passkeymodel.h"
|
||||
|
||||
|
||||
@ -18,44 +18,46 @@ void Pass::init(QObject *window)
|
||||
if (!window) {
|
||||
qFatal("window is invalid. Abording.");
|
||||
}
|
||||
|
||||
Gpg::instance()->setWindow(window);
|
||||
|
||||
QDir dir(m_password_store);
|
||||
if (!dir.exists())
|
||||
dir.mkpath(".");
|
||||
qDebug() << "Password Store is :" << m_password_store;
|
||||
qInfo() << "Password Store is :" << m_password_store;
|
||||
}
|
||||
|
||||
void Pass::decrypt(QUrl url)
|
||||
{
|
||||
qDebug() << "Start decrypting";
|
||||
qInfo() << "Decrypting";
|
||||
auto decrypt_ret = Gpg::instance()->decryptFromFile(url.toLocalFile());
|
||||
if (decrypt_ret.first) {
|
||||
qDebug() << "Decrypt Failed";
|
||||
qInfo() << "Decrypt Failed";
|
||||
emit decryptFailed();
|
||||
} else if (decrypt_ret.second.isNull()) {
|
||||
qDebug() << "Decrypt Canceled";
|
||||
qInfo() << "Decrypt Canceled";
|
||||
emit decryptCanceled();
|
||||
} else {
|
||||
qDebug() << "Decrypt OK";
|
||||
qInfo() << "Decrypt OK";
|
||||
emit decrypted(decrypt_ret.second);
|
||||
}
|
||||
}
|
||||
|
||||
bool Pass::gpgDeleteKeyId(QString id)
|
||||
{
|
||||
qDebug() << "Start deleting Key id " << id;
|
||||
qInfo() << "Deleting Key id " << id;
|
||||
return !Gpg::instance()->deleteKeyId(id);
|
||||
}
|
||||
|
||||
bool Pass::gpgImportKeyFromFile(QUrl url)
|
||||
{
|
||||
qDebug() << "Start importing Key from " << url;
|
||||
qInfo() << "Importing Key from " << url;
|
||||
return !Gpg::instance()->importKeysFromFile(url.toLocalFile());
|
||||
}
|
||||
|
||||
QVariant Pass::gpgGetAllKeysModel()
|
||||
{
|
||||
qInfo() << "Getting all key form gpg ";
|
||||
return QVariant::fromValue(PassKeyModel::keysToPassKeyQObjectList(
|
||||
Gpg::instance()->getAllKeys().second));
|
||||
}
|
||||
@ -64,3 +66,9 @@ QString Pass::getPasswordStore()
|
||||
{
|
||||
return m_password_store;
|
||||
}
|
||||
|
||||
bool Pass::gitClone(QString url)
|
||||
{
|
||||
qInfo() << "Cloning . password_store from " << url;
|
||||
return Git::instance()->clone(url);
|
||||
}
|
||||
|
@ -27,6 +27,7 @@ public:
|
||||
Q_INVOKABLE bool gpgDeleteKeyId(QString id);
|
||||
Q_INVOKABLE bool gpgImportKeyFromFile(QUrl url);
|
||||
Q_INVOKABLE QVariant gpgGetAllKeysModel();
|
||||
Q_INVOKABLE bool gitClone(QString url);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
@ -23,15 +23,6 @@ add_library(${PLUGIN} MODULE ${SRC})
|
||||
set_target_properties(${PLUGIN} PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${PLUGIN})
|
||||
qt5_use_modules(${PLUGIN} Qml Quick DBus)
|
||||
|
||||
set(EXTERNAL_LIBS "${CMAKE_SOURCE_DIR}/build/${ARCH_TRIPLET}/quazip/install/")
|
||||
|
||||
INCLUDE_DIRECTORIES(${EXTERNAL_LIBS}/include)
|
||||
|
||||
add_library(quazip STATIC IMPORTED)
|
||||
set_property(TARGET quazip PROPERTY IMPORTED_LOCATION "${EXTERNAL_LIBS}/lib/libquazip5.a")
|
||||
|
||||
target_link_libraries(${PLUGIN} quazip)
|
||||
|
||||
|
||||
set(QT_IMPORTS_DIR "/lib/${ARCH_TRIPLET}")
|
||||
|
||||
|
190
po/ca.po
Normal file
190
po/ca.po
Normal file
@ -0,0 +1,190 @@
|
||||
# UTPass
|
||||
# Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
# This file is distributed under the same license as the utpass.qrouland package.
|
||||
# Joan CiberSheep <cibersheep@gmail.com>, 2019.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: utpass.qrouland\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-21 14:01+0000\n"
|
||||
"PO-Revision-Date: 2019-09-30 08:53+0000\n"
|
||||
"Last-Translator: Joan CiberSheep <cibersheep@gmail.com>\n"
|
||||
"Language-Team: Catalan <https://translate-ut.org/projects/utpass/utpass/ca/>"
|
||||
"\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.8\n"
|
||||
|
||||
#: ../qml/components/FileDir.qml:71
|
||||
msgid "Decryption failed !"
|
||||
msgstr "Ha fallat la desencriptació"
|
||||
|
||||
#: ../qml/dialogs/DoubleValidationDialog.qml:28
|
||||
#: ../qml/dialogs/PassphraseDialog.qml:29
|
||||
#: ../qml/dialogs/SimpleValidationDialog.qml:19
|
||||
msgid "Ok"
|
||||
msgstr "D'acord"
|
||||
|
||||
#: ../qml/dialogs/DoubleValidationDialog.qml:44
|
||||
#: ../qml/dialogs/PassphraseDialog.qml:41
|
||||
#: ../qml/dialogs/SimpleValidationDialog.qml:30
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·la"
|
||||
|
||||
#: ../qml/dialogs/ErrorDialog.qml:12
|
||||
msgid "Error !"
|
||||
msgstr "Error"
|
||||
|
||||
#: ../qml/dialogs/ErrorDialog.qml:15 ../qml/dialogs/SuccessDialog.qml:15
|
||||
msgid "OK"
|
||||
msgstr "D'acord"
|
||||
|
||||
#: ../qml/dialogs/PassphraseDialog.qml:7
|
||||
msgid "Authentication required"
|
||||
msgstr "Es requereix autenticació"
|
||||
|
||||
#: ../qml/dialogs/PassphraseDialog.qml:8
|
||||
msgid "Enter passphrase:"
|
||||
msgstr "Entreu la frase de pas:"
|
||||
|
||||
#: ../qml/dialogs/PassphraseDialog.qml:20
|
||||
msgid "passphrase"
|
||||
msgstr "frase de pas"
|
||||
|
||||
#: ../qml/dialogs/SuccessDialog.qml:12
|
||||
msgid "Success !"
|
||||
msgstr "Èxit"
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:8 ../qml/pages/headers/StackHeader.qml:8
|
||||
#: UTPass.desktop.in.h:1
|
||||
msgid "UTPass"
|
||||
msgstr "UTPass"
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:23
|
||||
msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:51 ../qml/pages/settings/Settings.qml:14
|
||||
msgid "Settings"
|
||||
msgstr "Paràmetres"
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:58 ../qml/pages/Info.qml:11
|
||||
msgid "Info"
|
||||
msgstr "Informació"
|
||||
|
||||
#: ../qml/pages/Info.qml:50
|
||||
msgid "<b>Version</b>"
|
||||
msgstr "<b>Versió</b>"
|
||||
|
||||
#: ../qml/pages/Info.qml:68
|
||||
msgid "<b>Maintainer</>"
|
||||
msgstr "<b>Manteniment</>"
|
||||
|
||||
#: ../qml/pages/Info.qml:90
|
||||
msgid "Suggest improvement(s) or report a bug(s)"
|
||||
msgstr "Suggeriu millores o informeu d'un error"
|
||||
|
||||
#: ../qml/pages/Info.qml:94
|
||||
msgid "Access to the source code"
|
||||
msgstr "Accediu al codi font"
|
||||
|
||||
#: ../qml/pages/Info.qml:101
|
||||
msgid "Released under the terms of the GNU GPL v3"
|
||||
msgstr "Publicada sota els termes de la GNU GPL v3"
|
||||
|
||||
#: ../qml/pages/PasswordList.qml:23
|
||||
msgid "Back"
|
||||
msgstr "Enrere"
|
||||
|
||||
#: ../qml/pages/PasswordList.qml:43
|
||||
msgid ""
|
||||
"No password found<br>You can import a password store zip in the settings"
|
||||
msgstr ""
|
||||
"No s'ha trobat cap contrasenya<br>Podeu un importar un zip de contrasenyes a "
|
||||
"la configuració"
|
||||
|
||||
#: ../qml/pages/settings/ImportKeyFile.qml:17
|
||||
msgid "GPG Key Import"
|
||||
msgstr "Importa clau GPG"
|
||||
|
||||
#: ../qml/pages/settings/ImportKeyFile.qml:69
|
||||
msgid "Key import failed !"
|
||||
msgstr "Ha fallat la importació de la clau"
|
||||
|
||||
#: ../qml/pages/settings/ImportKeyFile.qml:76
|
||||
msgid "Key successfully imported !"
|
||||
msgstr "S'ha importat la clau amb èxit"
|
||||
|
||||
#: ../qml/pages/settings/ImportZip.qml:17
|
||||
msgid "Zip Password Store Import"
|
||||
msgstr "Importa zip de contrasenyes"
|
||||
|
||||
#: ../qml/pages/settings/ImportZip.qml:72
|
||||
msgid ""
|
||||
"Importing a new zip will delete<br>any existing password store!<br>Continue ?"
|
||||
msgstr ""
|
||||
"A l'Importar un nou zip s'eliminarà<br>qualsevol contrasenya desada "
|
||||
"anteriorment<br>Voleu continuar ?"
|
||||
|
||||
#: ../qml/pages/settings/ImportZip.qml:82
|
||||
msgid "Password store import failed !"
|
||||
msgstr "Ha fallat la importació de contrasenyes"
|
||||
|
||||
#: ../qml/pages/settings/ImportZip.qml:89
|
||||
msgid "Password store sucessfully imported !"
|
||||
msgstr "S'han importat les contrasenyes amb èxit"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:16
|
||||
msgid "Info Keys"
|
||||
msgstr "Informació de la clau"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:44
|
||||
msgid "Key id : %1"
|
||||
msgstr "Identificació de la clau: %1"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:49
|
||||
msgid "Delete this key"
|
||||
msgstr "Elimina aquesta clau"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:68
|
||||
msgid "You're are about to delete<br>%1<br>Continue ?"
|
||||
msgstr "Esteu a punt d'eliminar<br>%1<br>Voleu continuar?"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:71
|
||||
msgid "%1<br>will be definitively removed.<br>Continue ?"
|
||||
msgstr "%1<br>s'eliminarà definitivament.<br>Voleu continuar?"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:87
|
||||
msgid "Key removal failed !"
|
||||
msgstr "Ha fallat l'eliminació de la clau"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:94
|
||||
msgid "Key successfully deleted !"
|
||||
msgstr "S'ha eliminat la clau amb èxit"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:28
|
||||
msgid "GPG"
|
||||
msgstr "GPG"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:32
|
||||
msgid "Import a GPG key file"
|
||||
msgstr "Importa un fitxer de clau GPG"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:36
|
||||
msgid "Show GPG keys"
|
||||
msgstr "Mostra les claus GPG"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:43
|
||||
msgid "Password Store"
|
||||
msgstr "Contrasenyes desades"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:47
|
||||
msgid "Import a Password Store Zip"
|
||||
msgstr "Importa un zip de contrasenyes"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:56
|
||||
msgid "Warning: importing delete any exiting Password Store"
|
||||
msgstr "Alertau: s'eliminarà qualsevol contrasenya desada a l'importar"
|
193
po/es.po
Normal file
193
po/es.po
Normal file
@ -0,0 +1,193 @@
|
||||
# UTPass
|
||||
# Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
# This file is distributed under the same license as the utpass.qrouland package.
|
||||
# Advocatux <advocatux@airpost.net>, 2019.
|
||||
# Reda <redxxiii@zaclys.net>, 2019.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: utpass.qrouland\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-21 14:01+0000\n"
|
||||
"PO-Revision-Date: 2019-09-30 08:53+0000\n"
|
||||
"Last-Translator: Advocatux <advocatux@airpost.net>\n"
|
||||
"Language-Team: Spanish <https://translate-ut.org/projects/utpass/utpass/es/>"
|
||||
"\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.8\n"
|
||||
|
||||
#: ../qml/components/FileDir.qml:71
|
||||
msgid "Decryption failed !"
|
||||
msgstr "¡Falló el descifrado!"
|
||||
|
||||
#: ../qml/dialogs/DoubleValidationDialog.qml:28
|
||||
#: ../qml/dialogs/PassphraseDialog.qml:29
|
||||
#: ../qml/dialogs/SimpleValidationDialog.qml:19
|
||||
msgid "Ok"
|
||||
msgstr "Aceptar"
|
||||
|
||||
#: ../qml/dialogs/DoubleValidationDialog.qml:44
|
||||
#: ../qml/dialogs/PassphraseDialog.qml:41
|
||||
#: ../qml/dialogs/SimpleValidationDialog.qml:30
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: ../qml/dialogs/ErrorDialog.qml:12
|
||||
msgid "Error !"
|
||||
msgstr "¡Error!"
|
||||
|
||||
#: ../qml/dialogs/ErrorDialog.qml:15 ../qml/dialogs/SuccessDialog.qml:15
|
||||
msgid "OK"
|
||||
msgstr "Aceptar"
|
||||
|
||||
#: ../qml/dialogs/PassphraseDialog.qml:7
|
||||
msgid "Authentication required"
|
||||
msgstr "Se requiere autentificación"
|
||||
|
||||
#: ../qml/dialogs/PassphraseDialog.qml:8
|
||||
msgid "Enter passphrase:"
|
||||
msgstr "Introducir contraseña:"
|
||||
|
||||
#: ../qml/dialogs/PassphraseDialog.qml:20
|
||||
msgid "passphrase"
|
||||
msgstr "contraseña"
|
||||
|
||||
#: ../qml/dialogs/SuccessDialog.qml:12
|
||||
msgid "Success !"
|
||||
msgstr "¡Correcto!"
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:8 ../qml/pages/headers/StackHeader.qml:8
|
||||
#: UTPass.desktop.in.h:1
|
||||
msgid "UTPass"
|
||||
msgstr "UTPass"
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:23
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:51 ../qml/pages/settings/Settings.qml:14
|
||||
msgid "Settings"
|
||||
msgstr "Configuración"
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:58 ../qml/pages/Info.qml:11
|
||||
msgid "Info"
|
||||
msgstr "Información"
|
||||
|
||||
#: ../qml/pages/Info.qml:50
|
||||
msgid "<b>Version</b>"
|
||||
msgstr "<b>Versión</b>"
|
||||
|
||||
#: ../qml/pages/Info.qml:68
|
||||
msgid "<b>Maintainer</>"
|
||||
msgstr "<b>Mantenedor</b>"
|
||||
|
||||
#: ../qml/pages/Info.qml:90
|
||||
msgid "Suggest improvement(s) or report a bug(s)"
|
||||
msgstr "Sugerir mejora(s) o reportar problema(s)"
|
||||
|
||||
#: ../qml/pages/Info.qml:94
|
||||
msgid "Access to the source code"
|
||||
msgstr "Acceso al código fuente"
|
||||
|
||||
#: ../qml/pages/Info.qml:101
|
||||
msgid "Released under the terms of the GNU GPL v3"
|
||||
msgstr "Publicado bajo los términos de la GNU GPL v3"
|
||||
|
||||
#: ../qml/pages/PasswordList.qml:23
|
||||
msgid "Back"
|
||||
msgstr "Atrás"
|
||||
|
||||
#: ../qml/pages/PasswordList.qml:43
|
||||
msgid ""
|
||||
"No password found<br>You can import a password store zip in the settings"
|
||||
msgstr ""
|
||||
"No se han encontrado contraseñas<br>Puede importar un archivo zip de "
|
||||
"almacenamiento de contraseñas en la configuración"
|
||||
|
||||
#: ../qml/pages/settings/ImportKeyFile.qml:17
|
||||
msgid "GPG Key Import"
|
||||
msgstr "Importar clave GPG"
|
||||
|
||||
#: ../qml/pages/settings/ImportKeyFile.qml:69
|
||||
msgid "Key import failed !"
|
||||
msgstr "¡Falló la importación de la clave!"
|
||||
|
||||
#: ../qml/pages/settings/ImportKeyFile.qml:76
|
||||
msgid "Key successfully imported !"
|
||||
msgstr "¡Clave importada correctamente!"
|
||||
|
||||
#: ../qml/pages/settings/ImportZip.qml:17
|
||||
msgid "Zip Password Store Import"
|
||||
msgstr "Importar zip de almacenamiento de contraseñas"
|
||||
|
||||
#: ../qml/pages/settings/ImportZip.qml:72
|
||||
msgid ""
|
||||
"Importing a new zip will delete<br>any existing password store!<br>Continue ?"
|
||||
msgstr ""
|
||||
"¡La importación de un nuevo zip borrará<br>cualquier contraseña "
|
||||
"almacenada!<br>¿Continuar?"
|
||||
|
||||
#: ../qml/pages/settings/ImportZip.qml:82
|
||||
msgid "Password store import failed !"
|
||||
msgstr "¡Falló la importación del archivo de contraseñas!"
|
||||
|
||||
#: ../qml/pages/settings/ImportZip.qml:89
|
||||
msgid "Password store sucessfully imported !"
|
||||
msgstr ""
|
||||
"¡La importación del archivo de contraseñas se ha realizado correctamente!"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:16
|
||||
msgid "Info Keys"
|
||||
msgstr "Información de las claves"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:44
|
||||
msgid "Key id : %1"
|
||||
msgstr "Identificador de clave: %1"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:49
|
||||
msgid "Delete this key"
|
||||
msgstr "Eliminar esta clave"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:68
|
||||
msgid "You're are about to delete<br>%1<br>Continue ?"
|
||||
msgstr "Está a punto de eliminar<br>%1<br>¿Continuar?"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:71
|
||||
msgid "%1<br>will be definitively removed.<br>Continue ?"
|
||||
msgstr "1%<br>será eliminada definitivamente.<br>¿Continuar?"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:87
|
||||
msgid "Key removal failed !"
|
||||
msgstr "¡Falló la eliminación de la clave!"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:94
|
||||
msgid "Key successfully deleted !"
|
||||
msgstr "¡La clave ha sido eliminada correctamente!"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:28
|
||||
msgid "GPG"
|
||||
msgstr "GPG"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:32
|
||||
msgid "Import a GPG key file"
|
||||
msgstr "Importar un archivo de clave GPG"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:36
|
||||
msgid "Show GPG keys"
|
||||
msgstr "Mostrar las claves GPG"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:43
|
||||
msgid "Password Store"
|
||||
msgstr "Archivo de contraseñas"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:47
|
||||
msgid "Import a Password Store Zip"
|
||||
msgstr "Importar un archivo Zip de contraseñas"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:56
|
||||
msgid "Warning: importing delete any exiting Password Store"
|
||||
msgstr ""
|
||||
"Advertencia: Importar elimina cualquier archivo de contraseñas existente"
|
191
po/fr.po
Normal file
191
po/fr.po
Normal file
@ -0,0 +1,191 @@
|
||||
# UTPass
|
||||
# Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
# This file is distributed under the same license as the utpass.qrouland package.
|
||||
# Anne17 <>anneonyme017@netcourrier.com>, 2019.
|
||||
# Quentin Rouland <quentin@qrouland.com>, 2019.
|
||||
# Reda <redxxiii@zaclys.net>, 2019.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: utpass.qrouland\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-21 14:01+0000\n"
|
||||
"PO-Revision-Date: 2019-10-05 17:01+0000\n"
|
||||
"Last-Translator: Reda <redxxiii@zaclys.net>\n"
|
||||
"Language-Team: French <https://translate-ut.org/projects/utpass/utpass/fr/>\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 3.8\n"
|
||||
|
||||
#: ../qml/components/FileDir.qml:71
|
||||
msgid "Decryption failed !"
|
||||
msgstr "Échec du déchiffrement !"
|
||||
|
||||
#: ../qml/dialogs/DoubleValidationDialog.qml:28
|
||||
#: ../qml/dialogs/PassphraseDialog.qml:29
|
||||
#: ../qml/dialogs/SimpleValidationDialog.qml:19
|
||||
msgid "Ok"
|
||||
msgstr "Valider"
|
||||
|
||||
#: ../qml/dialogs/DoubleValidationDialog.qml:44
|
||||
#: ../qml/dialogs/PassphraseDialog.qml:41
|
||||
#: ../qml/dialogs/SimpleValidationDialog.qml:30
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#: ../qml/dialogs/ErrorDialog.qml:12
|
||||
msgid "Error !"
|
||||
msgstr "Erreur !"
|
||||
|
||||
#: ../qml/dialogs/ErrorDialog.qml:15 ../qml/dialogs/SuccessDialog.qml:15
|
||||
msgid "OK"
|
||||
msgstr "Valider"
|
||||
|
||||
#: ../qml/dialogs/PassphraseDialog.qml:7
|
||||
msgid "Authentication required"
|
||||
msgstr "Authentification nécessaire"
|
||||
|
||||
#: ../qml/dialogs/PassphraseDialog.qml:8
|
||||
msgid "Enter passphrase:"
|
||||
msgstr "Saisissez votre mot de passe :"
|
||||
|
||||
#: ../qml/dialogs/PassphraseDialog.qml:20
|
||||
msgid "passphrase"
|
||||
msgstr "Mot de passe"
|
||||
|
||||
#: ../qml/dialogs/SuccessDialog.qml:12
|
||||
msgid "Success !"
|
||||
msgstr "Réussite !"
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:8 ../qml/pages/headers/StackHeader.qml:8
|
||||
#: UTPass.desktop.in.h:1
|
||||
msgid "UTPass"
|
||||
msgstr "UTPass"
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:23
|
||||
msgid "Search"
|
||||
msgstr "Rechercher"
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:51 ../qml/pages/settings/Settings.qml:14
|
||||
msgid "Settings"
|
||||
msgstr "Paramètres"
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:58 ../qml/pages/Info.qml:11
|
||||
msgid "Info"
|
||||
msgstr "Infos"
|
||||
|
||||
#: ../qml/pages/Info.qml:50
|
||||
msgid "<b>Version</b>"
|
||||
msgstr "<b>Version</b>"
|
||||
|
||||
#: ../qml/pages/Info.qml:68
|
||||
msgid "<b>Maintainer</>"
|
||||
msgstr "<b>Mainteneur</>"
|
||||
|
||||
#: ../qml/pages/Info.qml:90
|
||||
msgid "Suggest improvement(s) or report a bug(s)"
|
||||
msgstr "Suggérer des améliorations ou signaler des problèmes"
|
||||
|
||||
#: ../qml/pages/Info.qml:94
|
||||
msgid "Access to the source code"
|
||||
msgstr "Accéder au code source"
|
||||
|
||||
#: ../qml/pages/Info.qml:101
|
||||
msgid "Released under the terms of the GNU GPL v3"
|
||||
msgstr "Distribuée sous les termes de la GNU GPL v3"
|
||||
|
||||
#: ../qml/pages/PasswordList.qml:23
|
||||
msgid "Back"
|
||||
msgstr "Retour"
|
||||
|
||||
#: ../qml/pages/PasswordList.qml:43
|
||||
msgid ""
|
||||
"No password found<br>You can import a password store zip in the settings"
|
||||
msgstr ""
|
||||
"Aucun mot de passe trouvé<br>Vous pouvez importer un fichier zip de stockage "
|
||||
"de mots de passe dans les paramètres"
|
||||
|
||||
#: ../qml/pages/settings/ImportKeyFile.qml:17
|
||||
msgid "GPG Key Import"
|
||||
msgstr "Importation de clé GPG"
|
||||
|
||||
#: ../qml/pages/settings/ImportKeyFile.qml:69
|
||||
msgid "Key import failed !"
|
||||
msgstr "L'importation de la clé a échoué !"
|
||||
|
||||
#: ../qml/pages/settings/ImportKeyFile.qml:76
|
||||
msgid "Key successfully imported !"
|
||||
msgstr "Clé importée avec succès !"
|
||||
|
||||
#: ../qml/pages/settings/ImportZip.qml:17
|
||||
msgid "Zip Password Store Import"
|
||||
msgstr "Importation d'un fichier zip de mots de passe"
|
||||
|
||||
#: ../qml/pages/settings/ImportZip.qml:72
|
||||
msgid ""
|
||||
"Importing a new zip will delete<br>any existing password store!<br>Continue ?"
|
||||
msgstr ""
|
||||
"L'importation d'un nouveau zip supprimera<br>tout mot de passe stocké!<br>"
|
||||
"Continuer ?"
|
||||
|
||||
#: ../qml/pages/settings/ImportZip.qml:82
|
||||
msgid "Password store import failed !"
|
||||
msgstr "L'importation du fichier de mots de passe a échoué !"
|
||||
|
||||
#: ../qml/pages/settings/ImportZip.qml:89
|
||||
msgid "Password store sucessfully imported !"
|
||||
msgstr "L'importation du fichier de mots de passe a réussi !"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:16
|
||||
msgid "Info Keys"
|
||||
msgstr "Informations sur les clés"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:44
|
||||
msgid "Key id : %1"
|
||||
msgstr "Identifiant de la clé : %1"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:49
|
||||
msgid "Delete this key"
|
||||
msgstr "Supprimer cette clé"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:68
|
||||
msgid "You're are about to delete<br>%1<br>Continue ?"
|
||||
msgstr "Vous êtes sur le point de supprimer<br>%1<br>Voulez-vous continuer ?"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:71
|
||||
msgid "%1<br>will be definitively removed.<br>Continue ?"
|
||||
msgstr "%1<br>sera définitivement supprimée.<br>Voulez-vous continuer ?"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:87
|
||||
msgid "Key removal failed !"
|
||||
msgstr "La suppression de clé a échoué !"
|
||||
|
||||
#: ../qml/pages/settings/InfoKeys.qml:94
|
||||
msgid "Key successfully deleted !"
|
||||
msgstr "La clé a été supprimée avec succès !"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:28
|
||||
msgid "GPG"
|
||||
msgstr "GPG"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:32
|
||||
msgid "Import a GPG key file"
|
||||
msgstr "Importer un fichier de clés GPG"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:36
|
||||
msgid "Show GPG keys"
|
||||
msgstr "Afficher les clés GPG"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:43
|
||||
msgid "Password Store"
|
||||
msgstr "Fichier de mots de passe"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:47
|
||||
msgid "Import a Password Store Zip"
|
||||
msgstr "Importer un fichier Zip de mots de passe"
|
||||
|
||||
#: ../qml/pages/settings/Settings.qml:56
|
||||
msgid "Warning: importing delete any exiting Password Store"
|
||||
msgstr "Attention : l'importation supprime les fichiers précédents"
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: utpass.qrouland\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-09-21 14:01+0000\n"
|
||||
"POT-Creation-Date: 2025-01-07 13:36+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -57,20 +57,7 @@ msgstr ""
|
||||
msgid "Success !"
|
||||
msgstr ""
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:8 ../qml/pages/headers/StackHeader.qml:8
|
||||
#: UTPass.desktop.in.h:1
|
||||
msgid "UTPass"
|
||||
msgstr ""
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:23
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:51 ../qml/pages/settings/Settings.qml:14
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:58 ../qml/pages/Info.qml:11
|
||||
#: ../qml/pages/Info.qml:11 ../qml/pages/headers/MainHeader.qml:58
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
@ -103,6 +90,19 @@ msgid ""
|
||||
"No password found<br>You can import a password store zip in the settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:8 ../qml/pages/headers/StackHeader.qml:8
|
||||
#: UTPass.desktop.in.h:1
|
||||
msgid "UTPass"
|
||||
msgstr ""
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:23
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: ../qml/pages/headers/MainHeader.qml:51 ../qml/pages/settings/Settings.qml:14
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../qml/pages/settings/ImportKeyFile.qml:17
|
||||
msgid "GPG Key Import"
|
||||
msgstr ""
|
||||
|
@ -1,7 +1,7 @@
|
||||
import QtQuick 2.4
|
||||
import QtQuick.Layouts 1.1
|
||||
import Ubuntu.Components 1.3
|
||||
import Ubuntu.Components.Popups 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import Lomiri.Components.Popups 1.3
|
||||
import Pass 1.0
|
||||
import "dialogs"
|
||||
|
||||
@ -19,6 +19,7 @@ MainView {
|
||||
|
||||
function initPass(rootView) {
|
||||
Pass.init(rootView)
|
||||
pageStack.push(Qt.resolvedUrl("pages/PasswordList.qml"));
|
||||
}
|
||||
|
||||
function callPassphraseDialog(useridHint, description, previousWasBad) {
|
||||
@ -43,8 +44,6 @@ MainView {
|
||||
id: pageStack
|
||||
anchors.fill: parent
|
||||
|
||||
Component.onCompleted: {
|
||||
pageStack.push(Qt.resolvedUrl("pages/PasswordList.qml"))
|
||||
}
|
||||
Component.onCompleted: {}
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import "../styles"
|
||||
|
||||
Item {
|
||||
@ -12,7 +12,7 @@ Item {
|
||||
property int tBorderwidth: 0
|
||||
property int bBorderwidth: 0
|
||||
property int commonBorderWidth: 0
|
||||
property string borderColor: UbuntuColors.warmGrey
|
||||
property string borderColor: LomiriColors.warmGrey
|
||||
|
||||
width: parent.width
|
||||
height: units.gu(6)
|
||||
@ -33,13 +33,13 @@ Item {
|
||||
anchors.rightMargin: units.gu(2)
|
||||
height: units.gu(4)
|
||||
name: "edit-copy"
|
||||
color: UbuntuColors.orange
|
||||
color: LomiriColors.orange
|
||||
}
|
||||
|
||||
MouseArea {
|
||||
anchors.fill: parent
|
||||
onPressed: {
|
||||
parent.color = UbuntuColors.warmGrey
|
||||
parent.color = LomiriColors.warmGrey
|
||||
}
|
||||
onClicked: {
|
||||
var mimeData = Clipboard.newData()
|
||||
|
@ -1,5 +1,5 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import "../styles"
|
||||
|
||||
Item {
|
||||
@ -14,7 +14,7 @@ Item {
|
||||
property int tBorderwidth: 0
|
||||
property int bBorderwidth: 0
|
||||
property int commonBorderWidth: 0
|
||||
property string borderColor: UbuntuColors.warmGrey
|
||||
property string borderColor: LomiriColors.warmGrey
|
||||
|
||||
width: parent.width
|
||||
height: units.gu(6)
|
||||
@ -36,7 +36,7 @@ Item {
|
||||
width: units.gu(4)
|
||||
height: units.gu(4)
|
||||
name: "go-next"
|
||||
color: UbuntuColors.orange
|
||||
color: LomiriColors.orange
|
||||
}
|
||||
|
||||
MouseArea {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Ubuntu.Components.Popups 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import Lomiri.Components.Popups 1.3
|
||||
import Pass 1.0
|
||||
import "../styles"
|
||||
import "../dialogs"
|
||||
@ -27,7 +27,7 @@ Component {
|
||||
anchors.rightMargin: units.gu(2)
|
||||
height: units.gu(4)
|
||||
name: fileIsDir ? "go-next" : "lock"
|
||||
color: UbuntuColors.orange
|
||||
color: LomiriColors.orange
|
||||
}
|
||||
|
||||
MouseArea {
|
||||
@ -62,7 +62,7 @@ Component {
|
||||
rBorderwidth: 0
|
||||
tBorderwidth: 0
|
||||
bBorderwidth: 1
|
||||
borderColor: UbuntuColors.warmGrey
|
||||
borderColor: LomiriColors.warmGrey
|
||||
}
|
||||
|
||||
Component {
|
||||
|
@ -1,5 +1,5 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import "../styles"
|
||||
|
||||
Item {
|
||||
@ -17,7 +17,7 @@ Item {
|
||||
property int tBorderwidth: 0
|
||||
property int bBorderwidth: 0
|
||||
property int commonBorderWidth: 0
|
||||
property string borderColor: UbuntuColors.warmGrey
|
||||
property string borderColor: LomiriColors.warmGrey
|
||||
|
||||
width: parent.width
|
||||
height: units.gu(6)
|
||||
@ -39,7 +39,7 @@ Item {
|
||||
width: units.gu(4)
|
||||
height: units.gu(4)
|
||||
name: "go-next"
|
||||
color: UbuntuColors.orange
|
||||
color: LomiriColors.orange
|
||||
}
|
||||
|
||||
MouseArea {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Ubuntu.Components.Popups 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import Lomiri.Components.Popups 1.3
|
||||
|
||||
Dialog {
|
||||
id: doubleValidationDialog
|
||||
@ -26,7 +26,7 @@ Dialog {
|
||||
|
||||
Button {
|
||||
text: i18n.tr("Ok")
|
||||
color: UbuntuColors.green
|
||||
color: LomiriColors.green
|
||||
|
||||
onClicked: {
|
||||
if (nb_validation == 1) {
|
||||
@ -42,7 +42,7 @@ Dialog {
|
||||
Button {
|
||||
id: cancelButton
|
||||
text: i18n.tr("Cancel")
|
||||
color: UbuntuColors.red
|
||||
color: LomiriColors.red
|
||||
onClicked: {
|
||||
nb_validation = 0
|
||||
canceled()
|
||||
|
@ -1,6 +1,6 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Ubuntu.Components.Popups 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import Lomiri.Components.Popups 1.3
|
||||
|
||||
Dialog {
|
||||
id: dialogSuccess
|
||||
@ -13,7 +13,7 @@ Dialog {
|
||||
text: textError
|
||||
Button {
|
||||
text: i18n.tr("OK")
|
||||
color: UbuntuColors.red
|
||||
color: LomiriColors.red
|
||||
onClicked: function () {
|
||||
dialogClosed()
|
||||
PopupUtils.close(dialogSuccess)
|
||||
|
@ -1,6 +1,6 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Ubuntu.Components.Popups 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import Lomiri.Components.Popups 1.3
|
||||
|
||||
Dialog {
|
||||
id: passphraseProvider
|
||||
@ -27,7 +27,7 @@ Dialog {
|
||||
id: okButton
|
||||
|
||||
text: i18n.tr("Ok")
|
||||
color: UbuntuColors.green
|
||||
color: LomiriColors.green
|
||||
|
||||
onClicked: {
|
||||
validated(passphraseField.text)
|
||||
@ -40,7 +40,7 @@ Dialog {
|
||||
id: cancelButton
|
||||
text: i18n.tr("Cancel")
|
||||
|
||||
color: UbuntuColors.red
|
||||
color: LomiriColors.red
|
||||
|
||||
onClicked: {
|
||||
canceled()
|
||||
|
@ -1,6 +1,6 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Ubuntu.Components.Popups 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import Lomiri.Components.Popups 1.3
|
||||
|
||||
Dialog {
|
||||
id: doubleValidationDialog
|
||||
@ -17,7 +17,7 @@ Dialog {
|
||||
|
||||
Button {
|
||||
text: i18n.tr("Ok")
|
||||
color: UbuntuColors.green
|
||||
color: LomiriColors.green
|
||||
|
||||
onClicked: {
|
||||
validated()
|
||||
@ -28,7 +28,7 @@ Dialog {
|
||||
Button {
|
||||
id: cancelButton
|
||||
text: i18n.tr("Cancel")
|
||||
color: UbuntuColors.red
|
||||
color: LomiriColors.red
|
||||
onClicked: {
|
||||
canceled()
|
||||
PopupUtils.close(doubleValidationDialog)
|
||||
|
@ -1,6 +1,6 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Ubuntu.Components.Popups 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import Lomiri.Components.Popups 1.3
|
||||
|
||||
Dialog {
|
||||
id: dialogSuccess
|
||||
@ -13,7 +13,7 @@ Dialog {
|
||||
text: textSuccess
|
||||
Button {
|
||||
text: i18n.tr("OK")
|
||||
color: UbuntuColors.green
|
||||
color: LomiriColors.green
|
||||
onClicked: function () {
|
||||
dialogClosed()
|
||||
PopupUtils.close(dialogSuccess)
|
||||
|
@ -1,5 +1,5 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import "headers"
|
||||
import "../components"
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Ubuntu.Components.Popups 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import Lomiri.Components.Popups 1.3
|
||||
import "headers"
|
||||
|
||||
Page {
|
||||
|
@ -1,5 +1,5 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import Qt.labs.folderlistmodel 2.1
|
||||
import Pass 1.0
|
||||
import "../components"
|
||||
|
@ -1,5 +1,5 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Lomiri.Components 1.3
|
||||
|
||||
PageHeader {
|
||||
id: mainHeader
|
||||
|
@ -1,5 +1,5 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Lomiri.Components 1.3
|
||||
|
||||
PageHeader {
|
||||
id: stackHeader
|
||||
|
@ -1,7 +1,7 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Ubuntu.Content 1.3
|
||||
import Ubuntu.Components.Popups 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import Lomiri.Content 1.3
|
||||
import Lomiri.Components.Popups 1.3
|
||||
import Pass 1.0
|
||||
import Utils 1.0
|
||||
import "../headers"
|
||||
|
@ -1,7 +1,7 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Ubuntu.Content 1.3
|
||||
import Ubuntu.Components.Popups 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import Lomiri.Content 1.3
|
||||
import Lomiri.Components.Popups 1.3
|
||||
import Pass 1.0
|
||||
import Utils 1.0
|
||||
import "../headers"
|
||||
|
@ -1,6 +1,6 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Ubuntu.Components.Popups 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import Lomiri.Components.Popups 1.3
|
||||
import Pass 1.0
|
||||
import "../headers"
|
||||
import "../../components"
|
||||
@ -47,7 +47,7 @@ Page {
|
||||
Button {
|
||||
id: buttonDeleteKey
|
||||
text: i18n.tr("Delete this key")
|
||||
color: UbuntuColors.red
|
||||
color: LomiriColors.red
|
||||
onClicked: {
|
||||
infoKeysPage.currentKey = model.modelData.uid
|
||||
PopupUtils.open(infoKeysPageDeleteValidation, infoKeysPage)
|
||||
|
@ -1,5 +1,5 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Lomiri.Components 1.3
|
||||
import Pass 1.0
|
||||
import "../headers"
|
||||
import "../../components"
|
||||
@ -51,7 +51,7 @@ Page {
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
width: parent.width
|
||||
height: units.gu(4)
|
||||
color: UbuntuColors.red
|
||||
color: LomiriColors.red
|
||||
text: i18n.tr(
|
||||
'Warning: importing delete any exiting Password Store')
|
||||
}
|
||||
|
Reference in New Issue
Block a user