mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-11-14 05:25:08 -05:00
52 lines
1.3 KiB
C#
52 lines
1.3 KiB
C#
namespace keepass2android
|
|
{
|
|
/// <summary>
|
|
/// Keys to identify user-displayable strings.
|
|
/// </summary>
|
|
/// Do not rename the keys here unless you rename the corresponding keys in the resource file of KP2A.
|
|
/// The keys are resolved by reflection to the static Resource class. This kind of duplication is necessary
|
|
/// in order to use the Resource mechanism of Android but still decouple the logic layer from the UI.
|
|
public enum UiStringKey
|
|
{
|
|
AskDeletePermanentlyGroup,
|
|
progress_title,
|
|
AskDeletePermanentlyEntry,
|
|
search_results,
|
|
AskDeletePermanently_title,
|
|
saving_database,
|
|
keyfile_does_not_exist,
|
|
RecycleBin,
|
|
progress_create,
|
|
loading_database,
|
|
AddingEntry,
|
|
AddingGroup,
|
|
DeletingEntry,
|
|
DeletingGroup,
|
|
SettingPassword,
|
|
UndoingChanges,
|
|
TransformingKey,
|
|
DecodingDatabase,
|
|
ParsingDatabase,
|
|
CheckingTargetFileForChanges,
|
|
TitleSyncQuestion,
|
|
MessageSyncQuestion,
|
|
SynchronizingDatabase,
|
|
yes,
|
|
no,
|
|
YesSynchronize,
|
|
NoOverwrite,
|
|
SynchronizingCachedDatabase,
|
|
DownloadingRemoteFile,
|
|
UploadingFile,
|
|
FilesInSync,
|
|
SynchronizedDatabaseSuccessfully,
|
|
RestoringRemoteFile,
|
|
CheckingDatabaseForChanges,
|
|
RemoteDatabaseUnchanged,
|
|
CannotMoveGroupHere,
|
|
ErrorOcurred,
|
|
SynchronizingOtpAuxFile,
|
|
SavingOtpAuxFile,
|
|
CertificateFailure
|
|
}
|
|
} |