2013-06-14 00:14:50 -04:00
|
|
|
namespace keepass2android
|
|
|
|
{
|
2013-06-18 15:12:34 -04:00
|
|
|
/// <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.
|
2013-06-14 00:14:50 -04:00
|
|
|
public enum UiStringKey
|
|
|
|
{
|
|
|
|
AskDeletePermanentlyGroup,
|
|
|
|
progress_title,
|
|
|
|
AskDeletePermanentlyEntry,
|
|
|
|
search_results,
|
|
|
|
AskDeletePermanently_title,
|
|
|
|
saving_database,
|
|
|
|
keyfile_does_not_exist,
|
|
|
|
RecycleBin,
|
|
|
|
progress_create,
|
2013-07-09 03:59:17 -04:00
|
|
|
loading_database,
|
|
|
|
AddingEntry,
|
|
|
|
AddingGroup,
|
|
|
|
DeletingEntry,
|
|
|
|
DeletingGroup,
|
|
|
|
SettingPassword,
|
|
|
|
UndoingChanges,
|
|
|
|
TransformingKey,
|
|
|
|
DecodingDatabase,
|
|
|
|
ParsingDatabase,
|
|
|
|
CheckingTargetFileForChanges,
|
|
|
|
TitleSyncQuestion,
|
2013-07-11 11:27:10 -04:00
|
|
|
MessageSyncQuestion,
|
2013-07-17 10:26:12 -04:00
|
|
|
SynchronizingDatabase,
|
|
|
|
yes,
|
|
|
|
no,
|
|
|
|
YesSynchronize,
|
2013-08-01 16:20:39 -04:00
|
|
|
NoOverwrite,
|
|
|
|
SynchronizingCachedDatabase,
|
|
|
|
DownloadingRemoteFile,
|
|
|
|
UploadingFile,
|
|
|
|
FilesInSync,
|
2013-08-06 16:21:58 -04:00
|
|
|
SynchronizedDatabaseSuccessfully,
|
2013-08-14 00:05:25 -04:00
|
|
|
RestoringRemoteFile,
|
|
|
|
CheckingDatabaseForChanges,
|
2013-08-30 16:58:29 -04:00
|
|
|
RemoteDatabaseUnchanged,
|
2013-09-16 15:08:25 -04:00
|
|
|
CannotMoveGroupHere,
|
2013-11-20 13:14:57 -05:00
|
|
|
ErrorOcurred,
|
|
|
|
SynchronizingOtpAuxFile,
|
2013-12-12 04:24:24 -05:00
|
|
|
SavingOtpAuxFile,
|
|
|
|
CertificateFailure
|
2013-06-14 00:14:50 -04:00
|
|
|
}
|
|
|
|
}
|