- now app builds via CMake
This commit is contained in:
parent
b268ec275a
commit
ff16422a8b
@ -1,7 +1,7 @@
|
|||||||
cmake_minimum_required (VERSION 3.5)
|
cmake_minimum_required (VERSION 3.5)
|
||||||
|
|
||||||
# This directive is ignored for non OSX environments
|
# This directive is ignored for non OSX environments
|
||||||
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.11" CACHE STRING "Minimum OS X deployment version")
|
set (CMAKE_OSX_DEPLOYMENT_TARGET "10.12" CACHE STRING "Minimum OS X deployment version")
|
||||||
|
|
||||||
project (outliner C CXX) # Your project name
|
project (outliner C CXX) # Your project name
|
||||||
|
|
||||||
@ -42,10 +42,98 @@ else (Qt5OpenGL_FOUND)
|
|||||||
endif(Qt5OpenGL_FOUND)
|
endif(Qt5OpenGL_FOUND)
|
||||||
|
|
||||||
# List all source files in project directory
|
# List all source files in project directory
|
||||||
file (GLOB SOURCES "*.cpp")
|
set (SOURCES
|
||||||
file (GLOB C_SOURCES "*.c")
|
aboutdlg.cpp
|
||||||
file (GLOB HEADERS "*.h")
|
appevents.cpp
|
||||||
file (GLOB UI "*.ui")
|
attachmentsdialog.cpp
|
||||||
|
attachmentslist.cpp
|
||||||
|
browserwidget.cpp
|
||||||
|
connectdb_widget.cpp
|
||||||
|
encryption.cpp
|
||||||
|
finddialog.cpp
|
||||||
|
findsupport.cpp
|
||||||
|
helper.cpp
|
||||||
|
initial_ui.cpp
|
||||||
|
logger.cpp
|
||||||
|
main.cpp
|
||||||
|
mainwindow.cpp
|
||||||
|
newpassworddlg.cpp
|
||||||
|
openorcreatedb_widget.cpp
|
||||||
|
passworddlg.cpp
|
||||||
|
preferencesdlg.cpp
|
||||||
|
qrc_mainwindow.cpp
|
||||||
|
qrc_media.cpp
|
||||||
|
qrc_style.cpp
|
||||||
|
settings.cpp
|
||||||
|
startworkdialog.cpp
|
||||||
|
stopworkdialog.cpp
|
||||||
|
storage.cpp
|
||||||
|
task.cpp
|
||||||
|
taskaction.cpp
|
||||||
|
tasktreemodel.cpp
|
||||||
|
timeintervaldlg.cpp
|
||||||
|
timereportwizard.cpp
|
||||||
|
timetreedlg.cpp
|
||||||
|
timetreemodel.cpp
|
||||||
|
twofish.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
set (C_SOURCES
|
||||||
|
sqlite3.c
|
||||||
|
)
|
||||||
|
|
||||||
|
set (HEADERS
|
||||||
|
aboutdlg.h
|
||||||
|
appevents.h
|
||||||
|
attachmentsdialog.h
|
||||||
|
attachmentslist.h
|
||||||
|
browserwidget.h
|
||||||
|
config.h
|
||||||
|
connectdb_widget.h
|
||||||
|
encryption.h
|
||||||
|
finddialog.h
|
||||||
|
findsupport.h
|
||||||
|
helper.h
|
||||||
|
initial_ui.h
|
||||||
|
logger.h
|
||||||
|
mainwindow.h
|
||||||
|
moc_predefs.h
|
||||||
|
newpassworddlg.h
|
||||||
|
openorcreatedb_widget.h
|
||||||
|
passworddlg.h
|
||||||
|
preferencesdlg.h
|
||||||
|
settings.h
|
||||||
|
sqlite3.h
|
||||||
|
sqlite3ext.h
|
||||||
|
startworkdialog.h
|
||||||
|
stopworkdialog.h
|
||||||
|
storage.h
|
||||||
|
task.h
|
||||||
|
taskaction.h
|
||||||
|
tasktreemodel.h
|
||||||
|
timeintervaldlg.h
|
||||||
|
timereportwizard.h
|
||||||
|
timetreedlg.h
|
||||||
|
timetreemodel.h
|
||||||
|
twofish.h
|
||||||
|
)
|
||||||
|
|
||||||
|
set (UI
|
||||||
|
aboutdlg.ui
|
||||||
|
attachmentsdialog.ui
|
||||||
|
attachmentslist.ui
|
||||||
|
browserwidget.ui
|
||||||
|
connectdb_widget.ui
|
||||||
|
finddialog.ui
|
||||||
|
mainwindow.ui
|
||||||
|
newpassworddlg.ui
|
||||||
|
openorcreatedb_widget.ui
|
||||||
|
passworddlg.ui
|
||||||
|
preferencesdlg.ui
|
||||||
|
startworkdialog.ui
|
||||||
|
stopworkdialog.ui
|
||||||
|
timeintervaldlg.ui
|
||||||
|
timetreedlg.ui)
|
||||||
|
|
||||||
if (CMAKE_SYSTEM MATCHES "Windows*")
|
if (CMAKE_SYSTEM MATCHES "Windows*")
|
||||||
add_definitions(-DTARGET_WIN)
|
add_definitions(-DTARGET_WIN)
|
||||||
@ -78,6 +166,21 @@ if(TARGET_OSX)
|
|||||||
set (ADDITIONAL_EXE_OPTIONS MACOSX_BUNDLE)
|
set (ADDITIONAL_EXE_OPTIONS MACOSX_BUNDLE)
|
||||||
|
|
||||||
set (MACOS_ICON_FILE ${CMAKE_CURRENT_SOURCE_DIR}/icons/appicon-osx.icns)
|
set (MACOS_ICON_FILE ${CMAKE_CURRENT_SOURCE_DIR}/icons/appicon-osx.icns)
|
||||||
|
set (SOURCE_FILES ${CMAKE_CURRENT_SOURCE_DIR}/platforms/osx/sleeptracker_osx.h
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}/platforms/osx/sleeptracker_osx.mm
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}/platforms/osx/hidtrackerimpl_osx.h
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}/platforms/osx/hidtrackerimpl_osx.mm
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
find_library(COREFOUNDATION_LIBRARY CoreFoundation)
|
||||||
|
find_library(COCOA Cocoa)
|
||||||
|
find_library(IOKIT_LIBRARY IOKit)
|
||||||
|
find_library(AUDIOTOOLBOX_LIBRARY AudioToolbox)
|
||||||
|
find_library(COREAUDIO_LIBRARY CoreAudio)
|
||||||
|
find_library(CARBON_LIBRARY Carbon)
|
||||||
|
set (PLATFORM_LIBS ${COCOA} ${COREFOUNDATION_LIBRARY} ${IOKIT_LIBRARY} ${AUDIOTOOLBOX_LIBRARY} ${COREAUDIO_LIBRARY} ${CARBON_LIBRARY})
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (TARGET_WIN)
|
if (TARGET_WIN)
|
||||||
@ -124,6 +227,8 @@ add_executable(${EXE_NAME}
|
|||||||
${CMAKE_CURRENT_SOURCE_DIR}/qmarkdowntextedit/qplaintexteditsearchwidget.cpp
|
${CMAKE_CURRENT_SOURCE_DIR}/qmarkdowntextedit/qplaintexteditsearchwidget.cpp
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/platforms/hidtracker.cpp
|
${CMAKE_CURRENT_SOURCE_DIR}/platforms/hidtracker.cpp
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/platforms/hidtrackerimpl.cpp
|
${CMAKE_CURRENT_SOURCE_DIR}/platforms/hidtrackerimpl.cpp
|
||||||
|
${SOURCE_FILES}
|
||||||
|
${PLATFORM_LIBS}
|
||||||
${UI_RESOURCES}
|
${UI_RESOURCES}
|
||||||
${MACOS_ICON_FILE}
|
${MACOS_ICON_FILE}
|
||||||
${RESOURCE_FILES}
|
${RESOURCE_FILES}
|
||||||
@ -135,7 +240,7 @@ target_include_directories(${EXE_NAME} SYSTEM BEFORE
|
|||||||
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/sqlitecpp/include
|
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/sqlitecpp/include
|
||||||
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/sqlitecpp/sqlite3/include
|
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/sqlitecpp/sqlite3/include
|
||||||
PUBLIC ${OPENSSL_INCLUDE}
|
PUBLIC ${OPENSSL_INCLUDE}
|
||||||
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../lib/uuid/include
|
# PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../lib/uuid/include
|
||||||
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/fervor
|
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/fervor
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -157,9 +262,10 @@ endif()
|
|||||||
target_link_libraries(${EXE_NAME}
|
target_link_libraries(${EXE_NAME}
|
||||||
SQLiteCpp
|
SQLiteCpp
|
||||||
qtkeychain
|
qtkeychain
|
||||||
|
Fervor
|
||||||
${UUID_LIB}
|
${UUID_LIB}
|
||||||
${OPENSSL_CRYPTO}
|
${OPENSSL_CRYPTO}
|
||||||
Qt5::Core Qt5::Widgets Qt5::PrintSupport Qt5::OpenGL # Qt
|
Qt5::Core Qt5::Widgets Qt5::PrintSupport Qt5::OpenGL Qt5::Network # Qt
|
||||||
${PLATFORM_LIBS} # System specific libraries
|
${PLATFORM_LIBS} # System specific libraries
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -192,3 +298,8 @@ if (NOT APP_SKIP_BUILD_NUMBER)
|
|||||||
COMMAND ${SCRIPT_PROCESSOR} ${CMAKE_CURRENT_SOURCE_DIR}/build-number/${BUILD_NUMBER_SCRIPT}
|
COMMAND ${SCRIPT_PROCESSOR} ${CMAKE_CURRENT_SOURCE_DIR}/build-number/${BUILD_NUMBER_SCRIPT}
|
||||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/build-number/ )
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/build-number/ )
|
||||||
endif(NOT APP_SKIP_BUILD_NUMBER)
|
endif(NOT APP_SKIP_BUILD_NUMBER)
|
||||||
|
|
||||||
|
get_property(dirs DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY INCLUDE_DIRECTORIES)
|
||||||
|
foreach(dir ${dirs})
|
||||||
|
message(STATUS "dir='${dir}'")
|
||||||
|
endforeach()
|
||||||
|
|||||||
@ -1,2 +1,2 @@
|
|||||||
// Auto generated file ! Please do not edit !
|
// Auto generated file ! Please do not edit !
|
||||||
#define APP_BUILD_NUMBER 38
|
#define APP_BUILD_NUMBER 41
|
||||||
@ -14,6 +14,14 @@ set (QT_USE_QTWEBKIT true)
|
|||||||
set (FERVOR_APP_VERSION "0.9.2")
|
set (FERVOR_APP_VERSION "0.9.2")
|
||||||
set (FERVOR_APP_NAME "Litt")
|
set (FERVOR_APP_NAME "Litt")
|
||||||
|
|
||||||
|
# Instruct CMake to run moc automatically when needed.
|
||||||
|
set (CMAKE_AUTOMOC ON)
|
||||||
|
set (CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||||
|
|
||||||
|
# Instruct CMake to run uic automatically when needed.
|
||||||
|
set (CMAKE_AUTOUIC ON)
|
||||||
|
|
||||||
|
|
||||||
#include(${QT_USE_FILE})
|
#include(${QT_USE_FILE})
|
||||||
#add_definitions(${QT_DEFINITIONS})
|
#add_definitions(${QT_DEFINITIONS})
|
||||||
if(DEFINED FERVOR_APP_VERSION)
|
if(DEFINED FERVOR_APP_VERSION)
|
||||||
@ -22,6 +30,7 @@ else()
|
|||||||
add_definitions(-DFV_APP_VERSION="1.0")
|
add_definitions(-DFV_APP_VERSION="1.0")
|
||||||
message(WARNING "No version information for Fervor given (please set FERVOR_APP_VERSION)! Assuming 1.0.")
|
message(WARNING "No version information for Fervor given (please set FERVOR_APP_VERSION)! Assuming 1.0.")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(DEFINED FERVOR_APP_NAME)
|
if(DEFINED FERVOR_APP_NAME)
|
||||||
add_definitions(-DFV_APP_NAME="${FERVOR_APP_NAME}")
|
add_definitions(-DFV_APP_NAME="${FERVOR_APP_NAME}")
|
||||||
else()
|
else()
|
||||||
@ -60,6 +69,8 @@ include_directories(
|
|||||||
${CMAKE_SOURCE_DIR}
|
${CMAKE_SOURCE_DIR}
|
||||||
${CMAKE_CURRENT_BINARY_DIR}
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
)
|
)
|
||||||
|
include_directories (${Qt5Core_INCLUDE_DIRS} ${Qt5Widgets_INCLUDE_DIRS} ${Qt5Network_INCLUDE_DIRS})
|
||||||
|
|
||||||
add_library(Fervor ${SOURCES} ${MOC_HEADERS} ${MOC_SOURCES} ${UIS})
|
add_library(Fervor ${SOURCES} ${MOC_HEADERS} ${MOC_SOURCES} ${UIS})
|
||||||
|
|
||||||
if(FERVOR_BUILD_SAMPLE)
|
if(FERVOR_BUILD_SAMPLE)
|
||||||
|
|||||||
@ -6,6 +6,7 @@
|
|||||||
#include <QNetworkAccessManager>
|
#include <QNetworkAccessManager>
|
||||||
#include <QUrl>
|
#include <QUrl>
|
||||||
#include <QXmlStreamReader>
|
#include <QXmlStreamReader>
|
||||||
|
|
||||||
class FvUpdateWindow;
|
class FvUpdateWindow;
|
||||||
class FvUpdateConfirmDialog;
|
class FvUpdateConfirmDialog;
|
||||||
class FvAvailableUpdate;
|
class FvAvailableUpdate;
|
||||||
|
|||||||
@ -871,11 +871,13 @@ void MainWindow::buildOpenOrCreateView()
|
|||||||
// Ask password
|
// Ask password
|
||||||
void MainWindow::askDbPassword(const QString& message)
|
void MainWindow::askDbPassword(const QString& message)
|
||||||
{
|
{
|
||||||
|
if (mStackedViews)
|
||||||
mStackedViews->setCurrentIndex(0);
|
mStackedViews->setCurrentIndex(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::askNewDbPassword()
|
void MainWindow::askNewDbPassword()
|
||||||
{
|
{
|
||||||
|
if (mStackedViews)
|
||||||
mStackedViews->setCurrentIndex(1);
|
mStackedViews->setCurrentIndex(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
#include "sleeptracker_osx.h"
|
#include "sleeptracker_osx.h"
|
||||||
#include <CoreFoundation/CoreFoundation.h>
|
#import <CoreFoundation/CoreFoundation.h>
|
||||||
#include <Cocoa/Cocoa.h>
|
#import <Cocoa/Cocoa.h>
|
||||||
|
|
||||||
@interface SleepNotificationHandler: NSObject
|
@interface SleepNotificationHandler: NSObject
|
||||||
{
|
{
|
||||||
|
|||||||
@ -11,18 +11,18 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_win.cpp" line="108"/>
|
<location filename="../keychain_win.cpp" line="108"/>
|
||||||
<source>Could not decrypt data</source>
|
<source>Could not decrypt data</source>
|
||||||
<translation type="unfinished">Kann Daten nicht entschlüsseln</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="548"/>
|
<location filename="../keychain_unix.cpp" line="548"/>
|
||||||
<location filename="../keychain_unix.cpp" line="556"/>
|
<location filename="../keychain_unix.cpp" line="556"/>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation type="unfinished">Unbekannter Fehler</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="574"/>
|
<location filename="../keychain_unix.cpp" line="574"/>
|
||||||
<source>Could not open wallet: %1; %2</source>
|
<source>Could not open wallet: %1; %2</source>
|
||||||
<translation type="unfinished">Konnte Brieftasche nicht öffnen: %1; %2</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@ -30,12 +30,12 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="265"/>
|
<location filename="../keychain_unix.cpp" line="265"/>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation type="unfinished">Unbekannter Fehler</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="509"/>
|
<location filename="../keychain_unix.cpp" line="509"/>
|
||||||
<source>Access to keychain denied</source>
|
<source>Access to keychain denied</source>
|
||||||
<translation type="unfinished">Zugriff auf Schlüsselbund verweigert</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@ -63,41 +63,57 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../plaintextstore.cpp" line="104"/>
|
<location filename="../plaintextstore.cpp" line="104"/>
|
||||||
<source>Entry not found</source>
|
<source>Entry not found</source>
|
||||||
<translation type="unfinished">Eintrag nicht gefunden</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>QKeychain::ReadPasswordJobPrivate</name>
|
<name>QKeychain::ReadPasswordJobPrivate</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="187"/>
|
<location filename="../keychain_win.cpp" line="32"/>
|
||||||
<location filename="../keychain_unix.cpp" line="197"/>
|
<source>Password entry not found</source>
|
||||||
<source>Unknown error</source>
|
<translation type="unfinished"></translation>
|
||||||
<translation>Unbekannter Fehler</translation>
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../keychain_win.cpp" line="36"/>
|
||||||
|
<location filename="../keychain_win.cpp" line="139"/>
|
||||||
|
<source>Could not decrypt data</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="178"/>
|
<location filename="../keychain_unix.cpp" line="178"/>
|
||||||
<source>D-Bus is not running</source>
|
<source>D-Bus is not running</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../keychain_unix.cpp" line="187"/>
|
||||||
|
<location filename="../keychain_unix.cpp" line="197"/>
|
||||||
|
<source>Unknown error</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="286"/>
|
<location filename="../keychain_unix.cpp" line="286"/>
|
||||||
<source>No keychain service available</source>
|
<source>No keychain service available</source>
|
||||||
<translation>Kein Schlüsselbund-Dienst verfügbar</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="288"/>
|
<location filename="../keychain_unix.cpp" line="288"/>
|
||||||
<source>Could not open wallet: %1; %2</source>
|
<source>Could not open wallet: %1; %2</source>
|
||||||
<translation>Konnte Brieftasche nicht öffnen: %1; %2</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="333"/>
|
<location filename="../keychain_unix.cpp" line="333"/>
|
||||||
<source>Access to keychain denied</source>
|
<source>Access to keychain denied</source>
|
||||||
<translation>Zugriff auf Schlüsselbund verweigert</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="354"/>
|
<location filename="../keychain_unix.cpp" line="354"/>
|
||||||
<source>Could not determine data type: %1; %2</source>
|
<source>Could not determine data type: %1; %2</source>
|
||||||
<translation>Datentyp kann nicht ermittelt werden: %1: %2</translation>
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../keychain_unix.cpp" line="363"/>
|
||||||
|
<source>Entry not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="372"/>
|
<location filename="../keychain_unix.cpp" line="372"/>
|
||||||
@ -109,62 +125,14 @@
|
|||||||
<source>Unknown kwallet entry type '%1'</source>
|
<source>Unknown kwallet entry type '%1'</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
|
||||||
<source>Could not read password: %1; %2</source>
|
|
||||||
<translation type="vanished">Passwort konnte nicht ausgelesen werden: %1; %2</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_mac.cpp" line="75"/>
|
<location filename="../keychain_mac.cpp" line="75"/>
|
||||||
<source>Password not found</source>
|
<source>Password not found</source>
|
||||||
<translation>Passwort nicht gefunden</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../keychain_unix.cpp" line="363"/>
|
|
||||||
<source>Entry not found</source>
|
|
||||||
<translation>Eintrag nicht gefunden</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../keychain_win.cpp" line="32"/>
|
|
||||||
<source>Password entry not found</source>
|
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
|
||||||
<location filename="../keychain_win.cpp" line="36"/>
|
|
||||||
<location filename="../keychain_win.cpp" line="139"/>
|
|
||||||
<source>Could not decrypt data</source>
|
|
||||||
<translation>Kann Daten nicht entschlüsseln</translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>QKeychain::WritePasswordJobPrivate</name>
|
<name>QKeychain::WritePasswordJobPrivate</name>
|
||||||
<message>
|
|
||||||
<location filename="../keychain_unix.cpp" line="425"/>
|
|
||||||
<location filename="../keychain_unix.cpp" line="452"/>
|
|
||||||
<source>Unknown error</source>
|
|
||||||
<translation>Unbekannter Fehler</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../keychain_unix.cpp" line="415"/>
|
|
||||||
<source>D-Bus is not running</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../keychain_unix.cpp" line="468"/>
|
|
||||||
<source>Could not open wallet: %1; %2</source>
|
|
||||||
<translation>Konnte Brieftasche nicht öffnen: %1; %2</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<source>Access to keychain denied</source>
|
|
||||||
<translation type="vanished">Zugriff auf Schlüsselbund verweigert</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<source>Could not delete encrypted data from settings: access error</source>
|
|
||||||
<translation type="vanished">Kann verschlüsselte Daten nicht aus den Einstellungen entfernen: Zugriffsfehler</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<source>Could not delete encrypted data from settings: format error</source>
|
|
||||||
<translation type="vanished">Kann verschlüsselte Daten nicht aus den Einstellungen entfernen: Formatfehler</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_win.cpp" line="78"/>
|
<location filename="../keychain_win.cpp" line="78"/>
|
||||||
<source>Credential size exceeds maximum size of %1</source>
|
<source>Credential size exceeds maximum size of %1</source>
|
||||||
@ -183,68 +151,81 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_win.cpp" line="162"/>
|
<location filename="../keychain_win.cpp" line="162"/>
|
||||||
<source>Encryption failed</source>
|
<source>Encryption failed</source>
|
||||||
<translation>Verschlüsselung fehlgeschlagen</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not store encrypted data in settings: access error</source>
|
<location filename="../keychain_unix.cpp" line="415"/>
|
||||||
<translation type="vanished">Kann verschlüsselte Daten nicht in den Einstellungen speichern: Zugriffsfehler</translation>
|
<source>D-Bus is not running</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not store encrypted data in settings: format error</source>
|
<location filename="../keychain_unix.cpp" line="425"/>
|
||||||
<translation type="vanished">Kann verschlüsselte Daten nicht in den Einstellungen speichern: Formatfehler</translation>
|
<location filename="../keychain_unix.cpp" line="452"/>
|
||||||
|
<source>Unknown error</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../keychain_unix.cpp" line="468"/>
|
||||||
|
<source>Could not open wallet: %1; %2</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>QObject</name>
|
<name>QObject</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../libsecret.cpp" line="120"/>
|
||||||
|
<source>Entry not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="225"/>
|
<location filename="../keychain_unix.cpp" line="225"/>
|
||||||
<source>Access to keychain denied</source>
|
<source>Access to keychain denied</source>
|
||||||
<translation>Zugriff auf Schlüsselbund verweigert</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="227"/>
|
<location filename="../keychain_unix.cpp" line="227"/>
|
||||||
<source>No keyring daemon</source>
|
<source>No keyring daemon</source>
|
||||||
<translation>Kein Schlüsselbund-Dienst </translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="229"/>
|
<location filename="../keychain_unix.cpp" line="229"/>
|
||||||
<source>Already unlocked</source>
|
<source>Already unlocked</source>
|
||||||
<translation>Bereits entsperrt</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="231"/>
|
<location filename="../keychain_unix.cpp" line="231"/>
|
||||||
<source>No such keyring</source>
|
<source>No such keyring</source>
|
||||||
<translation>Kein solcher Schlüsselbund</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="233"/>
|
<location filename="../keychain_unix.cpp" line="233"/>
|
||||||
<source>Bad arguments</source>
|
<source>Bad arguments</source>
|
||||||
<translation>Ungültige Argumente</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="235"/>
|
<location filename="../keychain_unix.cpp" line="235"/>
|
||||||
<source>I/O error</source>
|
<source>I/O error</source>
|
||||||
<translation>Ein-/Ausgabe-Fehler</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="237"/>
|
<location filename="../keychain_unix.cpp" line="237"/>
|
||||||
<source>Cancelled</source>
|
<source>Cancelled</source>
|
||||||
<translation>Abgebrochen</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="239"/>
|
<location filename="../keychain_unix.cpp" line="239"/>
|
||||||
<source>Keyring already exists</source>
|
<source>Keyring already exists</source>
|
||||||
<translation>Schlüsselbund existiert bereits</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="241"/>
|
<location filename="../keychain_unix.cpp" line="241"/>
|
||||||
<source>No match</source>
|
<source>No match</source>
|
||||||
<translation>Kein Treffer</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="246"/>
|
<location filename="../keychain_unix.cpp" line="246"/>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation>Unbekannter Fehler</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_mac.cpp" line="31"/>
|
<location filename="../keychain_mac.cpp" line="31"/>
|
||||||
@ -256,10 +237,5 @@
|
|||||||
<source>%1 (OSStatus %2)</source>
|
<source>%1 (OSStatus %2)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
|
||||||
<location filename="../libsecret.cpp" line="120"/>
|
|
||||||
<source>Entry not found</source>
|
|
||||||
<translation type="unfinished">Eintrag nicht gefunden</translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
|||||||
@ -11,18 +11,18 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_win.cpp" line="108"/>
|
<location filename="../keychain_win.cpp" line="108"/>
|
||||||
<source>Could not decrypt data</source>
|
<source>Could not decrypt data</source>
|
||||||
<translation type="unfinished">Nu se poate decripta data</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="548"/>
|
<location filename="../keychain_unix.cpp" line="548"/>
|
||||||
<location filename="../keychain_unix.cpp" line="556"/>
|
<location filename="../keychain_unix.cpp" line="556"/>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation type="unfinished">Eroare necunoscută</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="574"/>
|
<location filename="../keychain_unix.cpp" line="574"/>
|
||||||
<source>Could not open wallet: %1; %2</source>
|
<source>Could not open wallet: %1; %2</source>
|
||||||
<translation type="unfinished">Nu se poate deschide portofelul: %1; %2</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@ -30,12 +30,12 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="265"/>
|
<location filename="../keychain_unix.cpp" line="265"/>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation type="unfinished">Eroare necunoscută</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="509"/>
|
<location filename="../keychain_unix.cpp" line="509"/>
|
||||||
<source>Access to keychain denied</source>
|
<source>Access to keychain denied</source>
|
||||||
<translation type="unfinished">Acces interzis la serviciul de chei</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@ -63,67 +63,11 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../plaintextstore.cpp" line="104"/>
|
<location filename="../plaintextstore.cpp" line="104"/>
|
||||||
<source>Entry not found</source>
|
<source>Entry not found</source>
|
||||||
<translation type="unfinished">Înregistrarea nu a fost găsită</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>QKeychain::ReadPasswordJobPrivate</name>
|
<name>QKeychain::ReadPasswordJobPrivate</name>
|
||||||
<message>
|
|
||||||
<location filename="../keychain_unix.cpp" line="187"/>
|
|
||||||
<location filename="../keychain_unix.cpp" line="197"/>
|
|
||||||
<source>Unknown error</source>
|
|
||||||
<translation>Eroare necunoscută</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../keychain_unix.cpp" line="178"/>
|
|
||||||
<source>D-Bus is not running</source>
|
|
||||||
<translation>D-Bus nu rulează</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../keychain_unix.cpp" line="286"/>
|
|
||||||
<source>No keychain service available</source>
|
|
||||||
<translatorcomment>Nu există niciun serviciu de chei disponibil</translatorcomment>
|
|
||||||
<translation>Kein Schlüsselbund-Dienst verfügbar</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../keychain_unix.cpp" line="288"/>
|
|
||||||
<source>Could not open wallet: %1; %2</source>
|
|
||||||
<translation>Nu se poate deschide portofelul: %1; %2</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../keychain_unix.cpp" line="333"/>
|
|
||||||
<source>Access to keychain denied</source>
|
|
||||||
<translation>Acces interzis la serviciul de chei</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../keychain_unix.cpp" line="354"/>
|
|
||||||
<source>Could not determine data type: %1; %2</source>
|
|
||||||
<translation>Nu se poate stabili tipul de date: %1: %2</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../keychain_unix.cpp" line="372"/>
|
|
||||||
<source>Unsupported entry type 'Map'</source>
|
|
||||||
<translation>Tip de înregistrare nesuportat 'Map'</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../keychain_unix.cpp" line="375"/>
|
|
||||||
<source>Unknown kwallet entry type '%1'</source>
|
|
||||||
<translation>Tip de înregistrare kwallet necunoscut '%1'</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<source>Could not read password: %1; %2</source>
|
|
||||||
<translation type="vanished">Nu se poate citi parola: %1; %2</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../keychain_mac.cpp" line="75"/>
|
|
||||||
<source>Password not found</source>
|
|
||||||
<translation>Parola nu a fost găsită</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../keychain_unix.cpp" line="363"/>
|
|
||||||
<source>Entry not found</source>
|
|
||||||
<translation>Înregistrarea nu a fost găsită</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_win.cpp" line="32"/>
|
<location filename="../keychain_win.cpp" line="32"/>
|
||||||
<source>Password entry not found</source>
|
<source>Password entry not found</source>
|
||||||
@ -133,39 +77,62 @@
|
|||||||
<location filename="../keychain_win.cpp" line="36"/>
|
<location filename="../keychain_win.cpp" line="36"/>
|
||||||
<location filename="../keychain_win.cpp" line="139"/>
|
<location filename="../keychain_win.cpp" line="139"/>
|
||||||
<source>Could not decrypt data</source>
|
<source>Could not decrypt data</source>
|
||||||
<translation>Nu se poate decripta data</translation>
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../keychain_unix.cpp" line="178"/>
|
||||||
|
<source>D-Bus is not running</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../keychain_unix.cpp" line="187"/>
|
||||||
|
<location filename="../keychain_unix.cpp" line="197"/>
|
||||||
|
<source>Unknown error</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../keychain_unix.cpp" line="286"/>
|
||||||
|
<source>No keychain service available</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../keychain_unix.cpp" line="288"/>
|
||||||
|
<source>Could not open wallet: %1; %2</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../keychain_unix.cpp" line="333"/>
|
||||||
|
<source>Access to keychain denied</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../keychain_unix.cpp" line="354"/>
|
||||||
|
<source>Could not determine data type: %1; %2</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../keychain_unix.cpp" line="363"/>
|
||||||
|
<source>Entry not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../keychain_unix.cpp" line="372"/>
|
||||||
|
<source>Unsupported entry type 'Map'</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../keychain_unix.cpp" line="375"/>
|
||||||
|
<source>Unknown kwallet entry type '%1'</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../keychain_mac.cpp" line="75"/>
|
||||||
|
<source>Password not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>QKeychain::WritePasswordJobPrivate</name>
|
<name>QKeychain::WritePasswordJobPrivate</name>
|
||||||
<message>
|
|
||||||
<location filename="../keychain_unix.cpp" line="425"/>
|
|
||||||
<location filename="../keychain_unix.cpp" line="452"/>
|
|
||||||
<source>Unknown error</source>
|
|
||||||
<translation>Eroare necunoscută</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../keychain_unix.cpp" line="415"/>
|
|
||||||
<source>D-Bus is not running</source>
|
|
||||||
<translation>D-Bus nu rulează</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../keychain_unix.cpp" line="468"/>
|
|
||||||
<source>Could not open wallet: %1; %2</source>
|
|
||||||
<translation>Nu se poate deschide portofelul: %1; %2</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<source>Access to keychain denied</source>
|
|
||||||
<translation type="vanished">Acces interzis la serviciul de chei</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<source>Could not delete encrypted data from settings: access error</source>
|
|
||||||
<translation type="vanished">Nu se pot șterge datele criptate din setări: eroare de acces</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<source>Could not delete encrypted data from settings: format error</source>
|
|
||||||
<translation type="vanished">Nu se pot șterge datele criptate din setări: eroare de format</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_win.cpp" line="78"/>
|
<location filename="../keychain_win.cpp" line="78"/>
|
||||||
<source>Credential size exceeds maximum size of %1</source>
|
<source>Credential size exceeds maximum size of %1</source>
|
||||||
@ -184,68 +151,81 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_win.cpp" line="162"/>
|
<location filename="../keychain_win.cpp" line="162"/>
|
||||||
<source>Encryption failed</source>
|
<source>Encryption failed</source>
|
||||||
<translation>Criptarea a eșuat</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not store encrypted data in settings: access error</source>
|
<location filename="../keychain_unix.cpp" line="415"/>
|
||||||
<translation type="vanished">Nu se pot stoca datele criptate în setări: eroare de acces</translation>
|
<source>D-Bus is not running</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not store encrypted data in settings: format error</source>
|
<location filename="../keychain_unix.cpp" line="425"/>
|
||||||
<translation type="vanished">Nu se pot stoca datele criptate în setări: eroare de format</translation>
|
<location filename="../keychain_unix.cpp" line="452"/>
|
||||||
|
<source>Unknown error</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../keychain_unix.cpp" line="468"/>
|
||||||
|
<source>Could not open wallet: %1; %2</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>QObject</name>
|
<name>QObject</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../libsecret.cpp" line="120"/>
|
||||||
|
<source>Entry not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="225"/>
|
<location filename="../keychain_unix.cpp" line="225"/>
|
||||||
<source>Access to keychain denied</source>
|
<source>Access to keychain denied</source>
|
||||||
<translation>Acces interzis la serviciul de chei</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="227"/>
|
<location filename="../keychain_unix.cpp" line="227"/>
|
||||||
<source>No keyring daemon</source>
|
<source>No keyring daemon</source>
|
||||||
<translation>Niciun demon pentru inelul de chei</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="229"/>
|
<location filename="../keychain_unix.cpp" line="229"/>
|
||||||
<source>Already unlocked</source>
|
<source>Already unlocked</source>
|
||||||
<translation>Deja deblocat</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="231"/>
|
<location filename="../keychain_unix.cpp" line="231"/>
|
||||||
<source>No such keyring</source>
|
<source>No such keyring</source>
|
||||||
<translation>Nu există astfel de inel de chei</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="233"/>
|
<location filename="../keychain_unix.cpp" line="233"/>
|
||||||
<source>Bad arguments</source>
|
<source>Bad arguments</source>
|
||||||
<translation>Argumente greșite</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="235"/>
|
<location filename="../keychain_unix.cpp" line="235"/>
|
||||||
<source>I/O error</source>
|
<source>I/O error</source>
|
||||||
<translation>Eroare de I/E</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="237"/>
|
<location filename="../keychain_unix.cpp" line="237"/>
|
||||||
<source>Cancelled</source>
|
<source>Cancelled</source>
|
||||||
<translation>Anulat</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="239"/>
|
<location filename="../keychain_unix.cpp" line="239"/>
|
||||||
<source>Keyring already exists</source>
|
<source>Keyring already exists</source>
|
||||||
<translation>Inelul de chei deja există</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="241"/>
|
<location filename="../keychain_unix.cpp" line="241"/>
|
||||||
<source>No match</source>
|
<source>No match</source>
|
||||||
<translation>Nicio potrivire</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_unix.cpp" line="246"/>
|
<location filename="../keychain_unix.cpp" line="246"/>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation>Eroare necunoscută</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_mac.cpp" line="31"/>
|
<location filename="../keychain_mac.cpp" line="31"/>
|
||||||
@ -255,12 +235,7 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../keychain_mac.cpp" line="32"/>
|
<location filename="../keychain_mac.cpp" line="32"/>
|
||||||
<source>%1 (OSStatus %2)</source>
|
<source>%1 (OSStatus %2)</source>
|
||||||
<translation>%1 (OSStatus %2)</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../libsecret.cpp" line="120"/>
|
|
||||||
<source>Entry not found</source>
|
|
||||||
<translation type="unfinished">Înregistrarea nu a fost găsită</translation>
|
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user